I am building a linter, in order to have consistency between the team, for our legacy codebase which is vanilla JS with a file combiner (concatenates all JS files into one).
I want all javascript files to start with a semicolon. If you want to know the reason, check this: What does the leading semicolon in JavaScript libraries do?. Do you know any plugin that ensures semicolon at the beginning of a file?
I also want to keep no-extra-semi
option from eslint:recommended
, any suggestions about how to do it?