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

.eslintrc.local.json - github.com/npm/cli.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
blob: e953021f7324caf57bcc954884ee409e68595bf0 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
{
  "rules": {
    "no-shadow": "off",
    "no-console": "error"
  },
  "overrides": [{
    "files": [
      "test/**"
    ],
    "rules": {
      "no-console": "off"
    }
  }]
}