eslint-config-marudor
Advanced tools
Comparing version 7.3.2 to 7.3.3
module.exports = { | ||
extends: './index.js', | ||
env: { | ||
node: true | ||
node: true, | ||
}, | ||
globals: {}, | ||
}; |
{ | ||
"name": "eslint-config-marudor", | ||
"version": "7.3.2", | ||
"version": "7.3.3", | ||
"description": "Eslint Configuration for private use", | ||
"main": "index.js", | ||
"scripts": { | ||
"test": "eslint **/*.js" | ||
"test": "eslint ." | ||
}, | ||
@@ -24,17 +24,19 @@ "repository": { | ||
"devDependencies": { | ||
"@typescript-eslint/eslint-plugin": "^2.29.0", | ||
"@typescript-eslint/parser": "^2.29.0", | ||
"@typescript-eslint/eslint-plugin": "^4.0.1", | ||
"@typescript-eslint/parser": "^4.0.1", | ||
"babel-eslint": "^10.1.0", | ||
"eslint": "^6.8.0", | ||
"eslint-config-prettier": "^6.10.1", | ||
"eslint-plugin-babel": "^5.3.0", | ||
"eslint-plugin-import": "^2.20.2", | ||
"eslint-plugin-jest": "^23.8.2", | ||
"eslint-plugin-prettier": "^3.1.3", | ||
"eslint-plugin-react": "^7.19.0", | ||
"eslint-plugin-react-hooks": "^3.0.0", | ||
"eslint": "^7.8.1", | ||
"eslint-config-prettier": "^6.11.0", | ||
"eslint-plugin-babel": "^5.3.1", | ||
"eslint-plugin-import": "^2.22.0", | ||
"eslint-plugin-jest": "^24.0.0", | ||
"eslint-plugin-prettier": "^3.1.4", | ||
"eslint-plugin-react": "^7.20.6", | ||
"eslint-plugin-react-hooks": "^4.1.0", | ||
"eslint-plugin-sort-imports-es6-autofix": "^0.5.0", | ||
"eslint-plugin-testing-library": "^3.0.4", | ||
"prettier": "^2.0.4" | ||
"eslint-plugin-testing-library": "^3.8.0", | ||
"jest": "^26.4.2", | ||
"prettier": "^2.1.1", | ||
"typescript": "^4.0.2" | ||
} | ||
} |
@@ -5,9 +5,32 @@ module.exports = { | ||
{ | ||
extends: [ | ||
'plugin:@typescript-eslint/recommended', | ||
'plugin:@typescript-eslint/recommended-requiring-type-checking', | ||
], | ||
rules: { | ||
'no-use-before-define': 0, | ||
'@typescript-eslint/array-type': 2, | ||
'@typescript-eslint/consistent-type-definitions': [ | ||
'error', | ||
'interface', | ||
'@typescript-eslint/consistent-type-imports': 2, | ||
'@typescript-eslint/no-unused-vars': [ | ||
2, | ||
{ | ||
argsIgnorePattern: '^_', | ||
ignoreRestSiblings: true, | ||
}, | ||
], | ||
'@typescript-eslint/no-explicit-any': 0, | ||
'@typescript-eslint/no-empty-interface': 0, | ||
'@typescript-eslint/no-unsafe-member-access': 0, | ||
'@typescript-eslint/no-unsafe-call': 0, | ||
'@typescript-eslint/no-unsafe-assignment': 0, | ||
'@typescript-eslint/no-var-requires': 0, | ||
'@typescript-eslint/no-unsafe-return': 0, | ||
'@typescript-eslint/restrict-template-expressions': 0, | ||
'@typescript-eslint/no-non-null-assertion': 0, | ||
'@typescript-eslint/explicit-module-boundary-types': [ | ||
2, | ||
{ | ||
allowArgumentsExplicitlyTypedAsAny: true, | ||
}, | ||
], | ||
}, | ||
@@ -24,3 +47,2 @@ plugins: ['@typescript-eslint'], | ||
sourceType: 'module', | ||
tsconfigRootDir: './', | ||
}, | ||
@@ -27,0 +49,0 @@ }, |
Major refactor
Supply chain riskPackage has recently undergone a major refactor. It may be unstable or indicate significant internal changes. Use caution when updating to versions that include significant changes.
Found 1 instance in 1 package
5972
144
0
16