Skip to content

Commit

Permalink
feat: Support ESLint 7.x
Browse files Browse the repository at this point in the history
  • Loading branch information
MichaelDeBoey committed May 20, 2020
1 parent 4074dcf commit cfa296c
Show file tree
Hide file tree
Showing 3 changed files with 625 additions and 231 deletions.
4 changes: 2 additions & 2 deletions .circleci/config.yml
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,7 @@ version: 2
defaults: &defaults
working_directory: ~/repo
docker:
- image: circleci/node:8.10.0
- image: circleci/node:10.12

jobs:
test:
Expand All @@ -28,7 +28,7 @@ jobs:
command: yarn test

- run: yarn lint

- save_cache:
paths:
- node_modules
Expand Down
18 changes: 9 additions & 9 deletions package.json
Original file line number Diff line number Diff line change
Expand Up @@ -30,25 +30,25 @@
"eslint": ">=0.8.0"
},
"devDependencies": {
"@types/eslint": "4.16.6",
"@types/eslint": "^6.8.1",
"@types/estree": "0.0.39",
"@types/jest": "24.0.11",
"@types/node": "8.10.0",
"@typescript-eslint/parser": "1.10.2",
"eslint": "5.16.0",
"eslint-config-airbnb-base": "13.1.0",
"eslint-config-prettier": "5.0.0",
"eslint-plugin-import": "2.14.0",
"eslint-plugin-jest": "22.7.0",
"@typescript-eslint/parser": "^3.0.0-alpha.25",
"eslint": "^7.0.0",
"eslint-config-airbnb-base": "^14.1.0",
"eslint-config-prettier": "^6.11.0",
"eslint-plugin-import": "^2.20.2",
"eslint-plugin-jest": "^23.13.1",
"eslint-plugin-jest-formatting": "file:.",
"eslint-plugin-prettier": "3.1.0",
"eslint-plugin-prettier": "^3.1.3",
"jest": "24.8.0",
"prettier": "1.18.2",
"typescript": "3.4.1",
"ts-jest": "24.0.2"
},
"engines": {
"node": ">=8.10.0"
"node": "^10.12.0 || >=12.0.0"
},
"license": "MIT"
}

0 comments on commit cfa296c

Please sign in to comment.