Skip to content

Commit

Permalink
update
Browse files Browse the repository at this point in the history
  • Loading branch information
shunjizhan committed Nov 29, 2023
1 parent f448f74 commit 1845c84
Show file tree
Hide file tree
Showing 2 changed files with 6 additions and 6 deletions.
1 change: 0 additions & 1 deletion .eslintignore
Original file line number Diff line number Diff line change
@@ -1,4 +1,3 @@
.eslintrc.js
node_modules/
bin/
lib/
Expand Down
11 changes: 6 additions & 5 deletions .eslintrc.js
Original file line number Diff line number Diff line change
@@ -1,12 +1,13 @@
module.exports = {
root: true,
env: { node: true },
parser: '@typescript-eslint/parser',
plugins: ['@typescript-eslint', 'import', 'sort-imports-es6-autofix'],
extends: [
'eslint:recommended',
'plugin:@typescript-eslint/recommended',
'plugin:import/recommended',
'plugin:import/typescript'
'plugin:import/typescript',
],
rules: {
/* -------------------- error -------------------- */
Expand Down Expand Up @@ -65,8 +66,8 @@ module.exports = {
settings: {
'import/resolver': {
typescript: {
project: 'tsconfig.json'
}
}
}
project: 'tsconfig.json',
},
},
},
};

0 comments on commit 1845c84

Please sign in to comment.