Skip to content

Commit

Permalink
Fix eslint path
Browse files Browse the repository at this point in the history
To avoid this error:

```
You are linting "src/vendors", but all of the files matching the glob pattern "src/vendors" are ignored.

If you don't want to lint these files, remove the pattern "src/vendors" from the list of arguments passed to ESLint.
```
  • Loading branch information
fregante committed Jun 16, 2021
1 parent 63678b8 commit a6e1abc
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion package.json
Expand Up @@ -6,7 +6,7 @@
"scripts": {
"test": "jest",
"test:watch": "jest --watchAll",
"lint": "eslint src/**",
"lint": "eslint src",
"watch": "ENV_FILE='.env.development' webpack --mode development --config browsers/webpack.config.js --watch",
"build": "NODE_OPTIONS=--max_old_space_size=8192 webpack --mode production --config browsers/webpack.config.js",
"build:scripts": "webpack --mode production --config scripts/webpack.scripts.js",
Expand Down

0 comments on commit a6e1abc

Please sign in to comment.