This linter plugin for Linter provides an interface to gjslint. It will be used with files that have the "JavaScript" syntax.
Before using this plugin, you must ensure that gjslint
is installed on your
system. To install gjslint
, read this.
Run apm install linter-gjslint
or search for linter-gjslint
in Atom package
manager.
You can configure linter-gjslint by accessing the options in File > Settings > Packages.
Or by editing ~/.atom/config.cson
(choose Open Your Config in Atom menu):
"linter-gjslint":
executablePath: "" #gjslint path. run 'which gjslint' to find the path
gjslintIgnoreList: [] # gjslint ignore codes from https://goo.gl/VAdwHE
flags: [
"--flagfile=.gjslintrc"
"--strict"
]
]