Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

feat: Update dependencies to work with TypeScript v4 #67

Merged
merged 1 commit into from
Nov 14, 2020
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
5 changes: 4 additions & 1 deletion .gitignore
Original file line number Diff line number Diff line change
@@ -5,4 +5,7 @@ node_modules
*.log

# mac
.DS_STORE
.DS_STORE

# idea
.idea
2 changes: 2 additions & 0 deletions index.js
Original file line number Diff line number Diff line change
@@ -28,6 +28,8 @@ module.exports = {
"@typescript-eslint/no-unused-vars": "error",
"@typescript-eslint/explicit-member-accessibility": "off",
"@typescript-eslint/no-object-literal-type-assertion": "off",
"no-use-before-define": "off",
"@typescript-eslint/no-use-before-define": ["error"],
// React
"react/jsx-filename-extension": ["error", { extensions: [".tsx"] }],
"react/prop-types": ["off", {}],
819 changes: 574 additions & 245 deletions package-lock.json

Large diffs are not rendered by default.

28 changes: 14 additions & 14 deletions package.json
Original file line number Diff line number Diff line change
@@ -28,27 +28,27 @@
},
"homepage": "https://github.com/toshi-toma/eslint-config-airbnb-typescript-prettier#readme",
"dependencies": {
"@typescript-eslint/eslint-plugin": "^3.3.0",
"@typescript-eslint/parser": "^3.3.0",
"eslint-config-airbnb": "^18.2.0",
"eslint-config-prettier": "^6.11.0",
"eslint-plugin-import": "^2.21.2",
"eslint-plugin-jsx-a11y": "^6.3.1",
"@typescript-eslint/eslint-plugin": "^4.7.0",
"@typescript-eslint/parser": "^4.7.0",
"eslint-config-airbnb": "^18.2.1",
"eslint-config-prettier": "^6.15.0",
"eslint-plugin-import": "^2.22.1",
"eslint-plugin-jsx-a11y": "^6.4.1",
"eslint-plugin-prettier": "^3.1.4",
"eslint-plugin-react": "^7.20.0",
"eslint-plugin-react-hooks": "^4.0.4"
"eslint-plugin-react": "^7.21.5",
"eslint-plugin-react-hooks": "^4.2.0"
},
"peerDependencies": {
"eslint": "^5.16.0 || ^6.8.0 || ^7.2.0",
"prettier": "^1.18.2 || ^2.0.0",
"typescript": ">=3.3.1 <3.10.0"
"typescript": ">=3.3.1 <4.1.0"
},
"devDependencies": {
"@types/react": "16.9.41",
"eslint": "7.3.1",
"prettier": "2.0.5",
"react": "16.13.1",
"@types/react": "16.9.56",
"eslint": "7.13.0",
"prettier": "2.1.2",
"react": "17.0.1",
"standard-version": "8.0.0",
"typescript": "3.9.5"
"typescript": "4.0.5"
}
}