You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Currently, LinterView::initLinters() checks to see whether the grammar of the current file is in the linter.syntax array when deciding whether to register a linter. For performance reasons, this makes a lot of sense, but it would be nice to be able to specify a wildcard to say "always associate my linter."
I am trying to add a linter for Arcanist, which has an arc lint subcommand. Basically, you can have a large project of all sorts of source files and register linters for them and arc lint <filename> will run the appropriate linter(s) and print the results. Therefore, I want to run arc lint whenever any file is changed in Atom. In this scenario, Arcanist is responsible for mapping file extensions to linters. Since I am already using Arcanist, I don't want to duplicate this information in Atom.
The text was updated successfully, but these errors were encountered:
Currently,
LinterView::initLinters()
checks to see whether the grammar of the current file is in thelinter.syntax
array when deciding whether to register a linter. For performance reasons, this makes a lot of sense, but it would be nice to be able to specify a wildcard to say "always associate my linter."I am trying to add a linter for Arcanist, which has an arc lint subcommand. Basically, you can have a large project of all sorts of source files and register linters for them and
arc lint <filename>
will run the appropriate linter(s) and print the results. Therefore, I want to runarc lint
whenever any file is changed in Atom. In this scenario, Arcanist is responsible for mapping file extensions to linters. Since I am already using Arcanist, I don't want to duplicate this information in Atom.The text was updated successfully, but these errors were encountered: