Welcome to mirror list, hosted at ThFree Co, Russian Federation.

.eslintrc.json « js - github.com/twbs/bootstrap.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
blob: 97ea9e043566e353eff553f5ebd2b01614fb81e7 (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
{
  "extends": "../.eslintrc.json",
  "env": {
    "es2022": true
  },
  "parserOptions": {
    "ecmaVersion": "latest",
    "sourceType": "module"
  },
  "overrides": [
    {
      "files": [
        "./*.js",
        "./src/**/*.js"
      ],
      "rules": {
        "import/extensions": [
          2,
          {
            "js": "always"
          }
        ]
      }
    }
  ]
}