Skip to content

Commit

Permalink
feat: upgrade dependencies
Browse files Browse the repository at this point in the history
  • Loading branch information
spawnia committed Feb 2, 2022
1 parent af2ec8c commit 2b0a1eb
Show file tree
Hide file tree
Showing 4 changed files with 1,592 additions and 2,373 deletions.
70 changes: 35 additions & 35 deletions package.json
Original file line number Diff line number Diff line change
Expand Up @@ -21,26 +21,26 @@
},
"homepage": "https://github.com/mll-lab/eslint-plugin",
"dependencies": {
"@typescript-eslint/eslint-plugin": "^4.18.0",
"@typescript-eslint/parser": "^4.18.0",
"eslint": "^7.22.0",
"eslint-config-airbnb-base": "^14.2.1",
"eslint-config-prettier": "^8.1.0",
"eslint-plugin-import": "^2.22.1",
"eslint-plugin-prettier": "^3.3.1",
"eslint-plugin-unused-imports": "^1.1.0",
"typescript": "^4.2.3"
"@typescript-eslint/eslint-plugin": "^5.10.2",
"@typescript-eslint/parser": "^5.10.2",
"eslint": "^8.8.0",
"eslint-config-airbnb-base": "^15.0.0",
"eslint-config-prettier": "^8.3.0",
"eslint-plugin-import": "^2.25.4",
"eslint-plugin-prettier": "^4.0.0",
"eslint-plugin-unused-imports": "^2.0.0",
"typescript": "^4.5.5"
},
"peerDependencies": {
"eslint-config-airbnb": "^18.2.1",
"eslint-import-resolver-webpack": "^0.13.0",
"eslint-plugin-cypress": "^2.11.2",
"eslint-plugin-jsx-a11y": "^6.4.1",
"eslint-plugin-react": "^7.22.0",
"eslint-plugin-react-hooks": "^4.2.0",
"eslint-plugin-redux-saga": "^1.2.1",
"eslint-plugin-testing-library": "^3.10.2",
"prettier": "^2.2.1"
"eslint-config-airbnb": "^19.0.4",
"eslint-import-resolver-webpack": "^0.13.2",
"eslint-plugin-cypress": "^2.12.1",
"eslint-plugin-jsx-a11y": "^6.5.1",
"eslint-plugin-react": "^7.28.0",
"eslint-plugin-react-hooks": "^4.3.0",
"eslint-plugin-redux-saga": "^1.3.2",
"eslint-plugin-testing-library": "^5.0.5",
"prettier": "^2.5.1"
},
"scripts": {
"build": "tsc",
Expand All @@ -49,24 +49,24 @@
"test": "jest"
},
"devDependencies": {
"@mll-lab/eslint-config": "^1.1.0",
"@mll-lab/eslint-config": "^1.7.0",
"@mll-lab/prettier-config": "^1.0.0",
"@mll-lab/tsconfig": "^1.1.0",
"@semantic-release/changelog": "^5.0.1",
"@semantic-release/git": "^9.0.0",
"@types/jest": "^26.0.21",
"@typescript-eslint/experimental-utils": "^4.18.0",
"eslint-config-airbnb": "^18.2.1",
"eslint-import-resolver-webpack": "^0.13.0",
"eslint-plugin-cypress": "^2.11.2",
"eslint-plugin-jsx-a11y": "^6.4.1",
"eslint-plugin-react": "^7.22.0",
"eslint-plugin-react-hooks": "^4.2.0",
"eslint-plugin-redux-saga": "^1.2.1",
"eslint-plugin-testing-library": "^3.10.2",
"jest": "^26.6.3",
"prettier": "^2.2.1",
"semantic-release": "^17.4.2",
"ts-jest": "^26.5.4"
"@semantic-release/changelog": "^6.0.1",
"@semantic-release/git": "^10.0.1",
"@types/jest": "^27.4.0",
"@typescript-eslint/experimental-utils": "^5.10.2",
"eslint-config-airbnb": "^19.0.4",
"eslint-import-resolver-webpack": "^0.13.2",
"eslint-plugin-cypress": "^2.12.1",
"eslint-plugin-jsx-a11y": "^6.5.1",
"eslint-plugin-react": "^7.28.0",
"eslint-plugin-react-hooks": "^4.3.0",
"eslint-plugin-redux-saga": "^1.3.2",
"eslint-plugin-testing-library": "^5.0.5",
"jest": "^27.4.7",
"prettier": "^2.5.1",
"semantic-release": "^19.0.2",
"ts-jest": "^27.1.3"
}
}
1 change: 0 additions & 1 deletion src/rules/cast-to-boolean.ts
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,6 @@ export const castToBoolean = ESLintUtils.RuleCreator((name) => name)({
type: 'suggestion',
docs: {
description: 'Canonicalizes boolean casts',
category: 'Best Practices',
recommended: 'error',
},
messages: {
Expand Down
1 change: 0 additions & 1 deletion src/rules/no-color-literals.ts
Original file line number Diff line number Diff line change
Expand Up @@ -19,7 +19,6 @@ export const noColorLiterals = ESLintUtils.RuleCreator((name) => name)({
docs: {
description:
'Checks for color strings, such as #000, #000000, rgb(... or rgba(...',
category: 'Best Practices',
recommended: 'error',
},
messages: {
Expand Down
Loading

0 comments on commit 2b0a1eb

Please sign in to comment.