aboutsummaryrefslogtreecommitdiff
path: root/.eslintrc.json
blob: ac05a7f8ba9cbf98139f4bad67ba50d2474fe701 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
{
  "parser": "@typescript-eslint/parser",
  "extends": [
    "react-app",
    "plugin:@typescript-eslint/recommended"
  ],
  "ignorePatterns": "dist/",
  "rules": {
    "jsx-quotes": ["error", "prefer-double"],
    "quotes": ["error", "single"]
  }
}