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

.eslintrc.json « build - github.com/twbs/bootstrap.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
blob: 220b6e1e56a4f7afbe6b4ceb6858b72c06c13590 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
{
  "env": {
    "browser": false,
    "node": true
  },
  "parserOptions": {
    "sourceType": "module"
  },
  "extends": "../.eslintrc.json",
  "rules": {
    "consistent-return": "off",
    "func-style": "off",
    "no-console": "off",
    "no-magic-numbers": "off",
    "no-process-env": "off",
    "no-process-exit": "off",
    "no-sync": "off",
    "spaced-comment": "off"
  }
}