Skip to content

Commit

Permalink
fix: remove references to eslint-plugin-node
Browse files Browse the repository at this point in the history
  • Loading branch information
Cherry committed May 6, 2024
1 parent bd4e7bf commit 4d80aeb
Show file tree
Hide file tree
Showing 6 changed files with 9 additions and 9 deletions.
4 changes: 2 additions & 2 deletions package-lock.json

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

2 changes: 1 addition & 1 deletion package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "@nodecraft/eslint-config",
"version": "36.0.0",
"version": "36.0.1",
"description": "Nodecraft base JS ESLint config",
"keywords": [
"eslint",
Expand Down
6 changes: 3 additions & 3 deletions typescript.js
Original file line number Diff line number Diff line change
Expand Up @@ -17,15 +17,15 @@ module.exports = {
},
plugins: [
'json',
'node',
'n',
],
env: {
browser: true,
node: true,
es2020: true,
},
rules: {
'node/no-unsupported-features/es-syntax': 'off',
'n/no-unsupported-features/es-syntax': 'off',

// disable a few native rules and use their typescript versions
'no-unused-vars': 'off',
Expand All @@ -36,7 +36,7 @@ module.exports = {
'no-use-before-define': 'off',
'@typescript-eslint/no-use-before-define': 'error',

'node/no-missing-import': 'off',
'n/no-missing-import': 'off',
'no-duplicate-imports': 'off',
'no-undef': 'off',

Expand Down
2 changes: 1 addition & 1 deletion vue-a11y.js
Original file line number Diff line number Diff line change
Expand Up @@ -17,7 +17,7 @@ module.exports = {
},
plugins: [
'json',
'node',
'n',
'vuejs-accessibility',
],
env: {
Expand Down
2 changes: 1 addition & 1 deletion vue.js
Original file line number Diff line number Diff line change
Expand Up @@ -17,7 +17,7 @@ module.exports = {
},
plugins: [
'json',
'node',
'n',
],
env: {
browser: true,
Expand Down
2 changes: 1 addition & 1 deletion vue3.js
Original file line number Diff line number Diff line change
Expand Up @@ -17,7 +17,7 @@ module.exports = {
},
plugins: [
'json',
'node',
'n',
],
env: {
browser: true,
Expand Down

0 comments on commit 4d80aeb

Please sign in to comment.