summaryrefslogtreecommitdiffstats
path: root/html/.eslintrc.json
blob: a2b9b603a52a9499c2721dd24d10d4f36a0ae733 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
{
  "extends": "./node_modules/gts/",
  "overrides": [
    {
      "files": ["**/*.ts", "**/*.tsx"],
      "parserOptions": {
        "jsxPragma": "h"
      },
      "rules": {
        "@typescript-eslint/no-duplicate-enum-values": "off"
      }
    },
    {
      "files": ["gulpfile.js", "webpack.config.js"],
      "rules": {
        "node/no-unpublished-require": "off"
      }
    }
  ]
}