Skip to content

Commit

Permalink
feat: allow eslintrc to run over tsx files (#469)
Browse files Browse the repository at this point in the history
The current eslintrc ignores tsx files.
  • Loading branch information
KamranAsif committed Mar 26, 2020
1 parent 8105c93 commit a21db94
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion .eslintrc.json
Expand Up @@ -20,7 +20,7 @@
},
"overrides": [
{
"files": "**/*.ts",
"files": ["**/*.ts", "**/*.tsx"],
"parser": "@typescript-eslint/parser",
"extends": [
"plugin:@typescript-eslint/recommended"
Expand Down

0 comments on commit a21db94

Please sign in to comment.