summaryrefslogtreecommitdiffstats
path: root/site/.eslintrc.json
blob: 1158ba36a7281cd0be201f4adedf1026c6899740 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
{
  "env": {
    "browser": true,
    "node": false
  },
  "plugins": [
    "markdown"
  ],
  "overrides": [
    {
      // 2. Enable the Markdown processor for all .md files.
      "files": ["./**/*.md"],
      "processor": "markdown/markdown"
    },
    {
      // In v2, configuration for fenced code blocks is separate from the
      // containing Markdown file. Each code block has a virtual filename
      // appended to the Markdown file's path.
      "files": [
        "./**/*.md/*.js"
      ],
      // Configuration for fenced code blocks goes with the override for
      // the code block's virtual filename, for example:
      "parserOptions": {
        "ecmaFeatures": {
          "impliedStrict": true
        }
      },
      "rules": {
        "no-array-for-each": "off",
        "no-undef": "off",
        "no-unused-vars": "off",
        "unicorn/no-array-for-each": "off",
        "unicorn/numeric-separators-style": "off",
        "no-unused-expressions": "off",
        "no-unused-labels": "off",
        "no-labels": "off",
        "no-redeclare": "off"
      }
    }
  ],
  "parserOptions": {
    "sourceType": "script"
  },
  "extends": "../.eslintrc.json",
  "rules": {
    "no-new": "off",
    "prefer-template": "error",
    "strict": "error",
    "unicorn/no-array-for-each": "off",
    "unicorn/numeric-separators-style": "off",
    "unicorn/prefer-node-protocol": "off"
  }
}