Skip to content

Commit

Permalink
chore: move lint cache files into node_modules/.cache folder (#1402)
Browse files Browse the repository at this point in the history
  • Loading branch information
kswenson authored Aug 14, 2024
1 parent d46d75b commit 78bafaa
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 4 deletions.
2 changes: 0 additions & 2 deletions v3/.gitignore
Original file line number Diff line number Diff line change
Expand Up @@ -5,8 +5,6 @@ node_modules
npm-error.log
.DS_Store
.env*
.eslintcache
.eslintcache.build
.nyc_output
.yalc
yalc.lock
Expand Down
4 changes: 2 additions & 2 deletions v3/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -60,8 +60,8 @@
"build:cypress": "tsc -p ./cypress/tsconfig.json",
"build:webpack": "webpack --mode production",
"clean:cache": "rimraf node_modules/.cache",
"lint": "eslint --cache \"./src/**/*.{js,jsx,ts,tsx}\" \"./cypress/**/*.{js,jsx,ts,tsx}\"",
"lint:build": "eslint --cache --cache-location \".eslintcache.build\" -c \".eslintrc.build.cjs\" \"./src/**/*.{js,jsx,ts,tsx}\" \"./cypress/**/*.{js,jsx,ts,tsx}\"",
"lint": "eslint --cache --cache-location \"node_modules/.cache/eslintcache\" \"./src/**/*.{js,jsx,ts,tsx}\" \"./cypress/**/*.{js,jsx,ts,tsx}\"",
"lint:build": "eslint --cache --cache-location \"node_modules/.cache/eslintcache.build\" -c \".eslintrc.build.cjs\" \"./src/**/*.{js,jsx,ts,tsx}\" \"./cypress/**/*.{js,jsx,ts,tsx}\"",
"lint:fix": "eslint --cache --fix \"./src/**/*.{js,jsx,ts,tsx}\" \"./cypress/**/*.{js,jsx,ts,tsx}\"",
"lint:style": "eslint -c \".eslintrc.style.cjs\" \"./src/**/*.{js,jsx,ts,tsx}\" \"./cypress/**/*.{js,jsx,ts,tsx}\"",
"lint:style:fix": "eslint -c \".eslintrc.style.cjs\" \"./src/**/*.{js,jsx,ts,tsx}\" \"./cypress/**/*.{js,jsx,ts,tsx}\"",
Expand Down

0 comments on commit 78bafaa

Please sign in to comment.