Skip to content

Commit

Permalink
Merge pull request #374 from diescake/migrate-eslint-to-v8
Browse files Browse the repository at this point in the history
feat!: support ESLint v8
  • Loading branch information
diescake committed Nov 16, 2021
2 parents e2a129c + 7032222 commit 8394bd6
Show file tree
Hide file tree
Showing 4 changed files with 322 additions and 279 deletions.
12 changes: 6 additions & 6 deletions .circleci/config.yml
Expand Up @@ -18,19 +18,19 @@ commands:
# run tests!
- run: yarn test
jobs:
node-v10:
node-v14:
docker:
- image: circleci/node:17
- image: circleci/node:14
steps:
- run-test
node-v12:
node-v16:
docker:
- image: circleci/node:17
- image: circleci/node:16
steps:
- run-test

workflows:
multiple_builds:
jobs:
- node-v10
- node-v12
- node-v14
- node-v16
21 changes: 13 additions & 8 deletions package.json
Expand Up @@ -27,26 +27,31 @@
},
"devDependencies": {
"@types/react": "^17.0.34",
"eslint": "^8.2.0",
"jest": "^27.3.1",
"eslint": "^7.30.0",
"prettier": "^2.3.2",
"prettier": "^2.4.1",
"react": "^17.0.2",
"standard-version": "^9.1.1",
"standard-version": "^9.3.2",
"typescript": "^4.4.4"
},
"peerDependencies": {
"eslint": "^7.0.0",
"eslint": "^7.0.0 || ^8.0.0",
"prettier": "^1.17.0 || ^2.0.0",
"react": "^16.8.6 || ^17.0.0",
"typescript": "^3.4.5 || ^4.0.0"
},
"dependencies": {
"@typescript-eslint/eslint-plugin": "^4.24.0",
"@typescript-eslint/parser": "^4.24.0",
"@typescript-eslint/eslint-plugin": "^5.3.0",
"@typescript-eslint/parser": "^5.3.0",
"eslint-config-prettier": "^8.3.0",
"eslint-plugin-jsx-a11y": "^6.4.1",
"eslint-plugin-prettier": "^3.4.1",
"eslint-plugin-react": "^7.24.0",
"eslint-plugin-prettier": "^4.0.0",
"eslint-plugin-react": "^7.26.1",
"eslint-plugin-react-hooks": "^4.2.0"
},
"jest": {
"moduleNameMapper": {
"eslint/use-at-your-own-risk": "eslint/lib/unsupported-api.js"
}
}
}
3 changes: 2 additions & 1 deletion renovate.json
@@ -1,5 +1,6 @@
{
"extends": [
"github>kufu/renovate-config"
]
],
"enabledManagers": ["npm"]
}

0 comments on commit 8394bd6

Please sign in to comment.