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: 76e7f37b6348334aeae551261b2484708e9a7d41 (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": "script"
  },
  "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"
  }
}