gts
gts copied to clipboard
Commands should skip build directory
The check
and fix
commands should skip the build
folder, where the compiled files are placed.
Version: 2.0.2
Was not generated automatically in my existing project. Workarounds are below.
Add ignorePatterns to the /.eslintrc.json
:
{
"extends": "./node_modules/gts/",
"ignorePatterns": ["build/"]
}
Or add file /.eslintignore
:
build/