Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Dev #31

Closed
wants to merge 2 commits into from
Closed

Dev #31

Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Jump to
Jump to file
Failed to load files.
Diff view
Diff view
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