eslint with fix
pitfall with CLIEngine()
eslint pitfall in custom CLI tool:
In cli.js
, passing default fix as null
to eslint.
Consuming fix
directly in CLIEngine
The following code, will be transpiled by babel to
Key bug : in eslint CLIEngine
, null
will be treated as true
and the fixed file could be listed on the fly. The check in eslint fixer
is
Programmatically linting (in custom cli)
eslint
have a CliEngine
which loads the cli options. --print-config
will trigger engine.getConfigForFile(PATH_TO_SINGLE_FILE)
to load the config for single file. Cos the config can vary for different type of files, you need to specify single file here.
vscode eslint extension
The extension uses the ESLint library installed in the opened workspace folder. If the folder doesn't provide one the extension looks for a global install version.
Last updated
Was this helpful?