aboutsummaryrefslogtreecommitdiff
path: root/.eslintrc.json
blob: c5c45a7f1b86dad6f261b704c9efc53b0d1ca855 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
{
  "parser": "@typescript-eslint/parser",
  "extends": [
    "airbnb-typescript",
    "plugin:@typescript-eslint/recommended"
  ],
  "parserOptions": {
    "project": "./tsconfig.json"
  },
  "ignorePatterns": "dist/",
  "rules": {
    "jsx-quotes": ["error", "prefer-double"],
    "quotes": ["error", "single"],
    "react/prop-types": 0,
    "arrow-body-style": 0,
    "arrow-parens": [2, "as-needed"],
    "no-multiple-empty-lines": [2, { "max": 2, "maxEOF": 1 } ]
  }
}