gts icon indicating copy to clipboard operation
gts copied to clipboard

Commands should skip build directory

Open sk- opened this issue 4 years ago • 1 comments

The check and fix commands should skip the build folder, where the compiled files are placed.

Version: 2.0.2

sk- avatar May 26 '20 22:05 sk-

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/

dobromyslov avatar Aug 14 '20 05:08 dobromyslov