Skip to content

Commit

Permalink
eslint upgraded to v8 including all plugins. Closed #25
Browse files Browse the repository at this point in the history
  • Loading branch information
mlegenhausen committed Nov 11, 2021
1 parent a3ca03f commit 36f8806
Show file tree
Hide file tree
Showing 3 changed files with 374 additions and 912 deletions.
32 changes: 16 additions & 16 deletions package.json
@@ -1,6 +1,6 @@
{
"name": "eslint-config-werk85",
"version": "5.0.0-beta.4",
"version": "5.0.0-beta.5",
"main": "index.js",
"repository": "git@github.com:werk85/eslint-config-werk85.git",
"author": "Malte Legenhausen <malte@werk85.de>",
Expand All @@ -14,28 +14,28 @@
"release": "ts-node ./scripts/release.ts"
},
"dependencies": {
"@typescript-eslint/eslint-plugin": "^4.33.0",
"@typescript-eslint/parser": "^4.33.0",
"@delagen/eslint-plugin-deprecation": "^1.3.0",
"@typescript-eslint/eslint-plugin": "^5.3.1",
"@typescript-eslint/parser": "^5.3.1",
"eslint-config-prettier": "^8.3.0",
"eslint-import-resolver-typescript": "^2.5.0",
"eslint-plugin-deprecation": "^1.2.1",
"eslint-plugin-import": "^2.24.2",
"eslint-plugin-jest": "^25.0.1",
"eslint-plugin-import": "^2.25.3",
"eslint-plugin-jest": "^25.2.4",
"eslint-plugin-prettier": "^4.0.0",
"eslint-plugin-react": "^7.26.1",
"eslint-plugin-react-hooks": "^4.2.0",
"eslint-plugin-react": "^7.27.0",
"eslint-plugin-react-hooks": "^4.3.0",
"prettier": "^2.4.1",
"typescript": "^4.4.3"
"typescript": "^4.4.4"
},
"peerDependencies": {
"eslint": "^7.22.0"
"eslint": "^8.2.0"
},
"devDependencies": {
"@types/eslint": "^7.28.1",
"@types/node": "^16.10.3",
"eslint": "^7.22.0",
"husky": "^7.0.2",
"npm-check-updates": "^11.8.5",
"ts-node": "^10.2.1"
"@types/eslint": "^7.28.2",
"@types/node": "^16.11.7",
"eslint": "^8.2.0",
"husky": "^7.0.4",
"npm-check-updates": "^12.0.2",
"ts-node": "^10.4.0"
}
}
4 changes: 2 additions & 2 deletions src/index.ts
Expand Up @@ -20,7 +20,7 @@ const config: Linter.Config = {
'plugin:prettier/recommended',
'prettier'
],
plugins: ['@typescript-eslint', 'deprecation', 'prettier'],
plugins: ['@typescript-eslint', '@delagen/deprecation', 'prettier'],
overrides: [
{
files: ['*.ts', '*.tsx'],
Expand Down Expand Up @@ -83,7 +83,7 @@ const config: Linter.Config = {
}
],
rules: {
'deprecation/deprecation': 'warn',
'@delagen/deprecation/deprecation': 'warn',
eqeqeq: [
'error',
'always',
Expand Down

0 comments on commit 36f8806

Please sign in to comment.