Skip to content

Commit a93135b

Browse files
authored
Merge pull request maxeth#30 from andrewpeters9/ts-extended
ESLint Parser Changes & Elaborated Types
2 parents 2db4692 + 2e0b8ba commit a93135b

File tree

5 files changed

+4150
-1184
lines changed

5 files changed

+4150
-1184
lines changed

.eslintrc

Lines changed: 5 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,7 @@
11
{
2-
"parser": "babel-eslint",
3-
"extends": "react-app",
2+
"extends": ["eslint:recommended", "plugin:@typescript-eslint/recommended", "react-app"],
3+
"parser": "@typescript-eslint/parser",
4+
"plugins": ["@typescript-eslint"],
45
"env": {
56
"es6": true
67
},
@@ -11,8 +12,9 @@
1112
"no-shadow": "warn",
1213
"jsx-a11y/anchor-is-valid": "off",
1314
"space-before-function-paren": "off",
15+
"@typescript-eslint/ban-ts-comment": "off",
1416
"react/jsx-boolean-value": "off",
1517
"semi": "off",
1618
"react/prop-types": "off"
1719
}
18-
}
20+
}

0 commit comments

Comments
 (0)