Skip to content

Commit

Permalink
fix: modify ignore files
Browse files Browse the repository at this point in the history
  • Loading branch information
VicSolWang committed Nov 21, 2023
1 parent 2ac5cc8 commit f409477
Show file tree
Hide file tree
Showing 5 changed files with 29 additions and 9 deletions.
1 change: 1 addition & 0 deletions .gitignore
Original file line number Diff line number Diff line change
Expand Up @@ -22,6 +22,7 @@ coverage.*
node_modules/

# IDE / Editor
.fleet
.idea
.vscode
target/
Expand Down
1 change: 1 addition & 0 deletions .npmignore
Original file line number Diff line number Diff line change
Expand Up @@ -28,6 +28,7 @@ node_modules/
tsconfig.json

# IDE / Editor
.fleet
.idea
.vscode
target/
Expand Down
1 change: 1 addition & 0 deletions .prettierignore
Original file line number Diff line number Diff line change
Expand Up @@ -25,6 +25,7 @@ coverage.*
node_modules/

# IDE / Editor
.fleet
.idea
.vscode
target/
Expand Down
33 changes: 25 additions & 8 deletions eslintignore.config.js
Original file line number Diff line number Diff line change
Expand Up @@ -5,13 +5,30 @@
*/

export default [
'.husky/*',
'coverage/*',
/* Logs */
'/logs',
'*.log',
'npm-debug.log*',
'yarn-debug.log*',
'yarn-error.log*',
/* Package lock */
'package-lock.json',
'yarn.lock',
/* Husky directory */
'.husky',
/* c8 test coverage */
'coverage/',
/* Coverage directory used by tools like istanbul */
'coverage.*',
'.github/*',
'node_modules/*',
'.idea/*',
'.vscode/*',
'target/*',
'.DS_Store/*',
/* Github directory */
'.github',
/* Dependency directories */
'node_modules/',
/* IDE / Editor */
'.fleet',
'.idea',
'.vscode',
'target/',
/* macOS */
'.DS_Store',
];
2 changes: 1 addition & 1 deletion package.json
Original file line number Diff line number Diff line change
Expand Up @@ -47,7 +47,7 @@
"dependencies": {
"@eslint/eslintrc": "^2.1.3",
"eslint": "^8.54.0",
"eslint-config-wzx": "^0.9.7",
"eslint-config-wzx": "^0.9.8",
"eslint-plugin-vue": "^9.18.1"
},
"peerDependencies": {
Expand Down

0 comments on commit f409477

Please sign in to comment.