refactor: remove eslint-plugin-node (#162)

This commit is contained in:
曾明健
2023-04-04 14:55:00 +08:00
committed by GitHub
parent 7a5daf6f38
commit 3f13db706b
3 changed files with 3 additions and 34 deletions

View File

@@ -49,7 +49,6 @@ module.exports = {
'antfu',
'no-only-tests',
'unused-imports',
'node',
],
settings: {
'import/resolver': {
@@ -317,8 +316,9 @@ module.exports = {
'max-statements-per-line': ['error', { max: 1 }],
// node
// 'node/prefer-global/process': ['error', 'never'], // Not sure if we need it as we are using `process.env.NODE_ENV` a lot in front-end.
'node/prefer-global/buffer': ['error', 'never'],
// 'n/prefer-global/process': ['error', 'never'], // Not sure if we need it as we are using `process.env.NODE_ENV` a lot in front-end.
'n/prefer-global/buffer': ['error', 'never'],
'n/no-callback-literal': 'off',
// unicorns
// Pass error message when throwing errors
@@ -351,7 +351,6 @@ module.exports = {
'import/no-named-as-default-member': 'off',
'import/no-named-as-default': 'off',
'import/namespace': 'off',
'n/no-callback-literal': 'off',
'sort-imports': [
'error',

View File

@@ -27,7 +27,6 @@
"eslint-plugin-markdown": "^3.0.0",
"eslint-plugin-n": "^15.7.0",
"eslint-plugin-no-only-tests": "^3.1.0",
"eslint-plugin-node": "^11.1.0",
"eslint-plugin-promise": "^6.1.1",
"eslint-plugin-unicorn": "^46.0.0",
"eslint-plugin-unused-imports": "^2.0.0",