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: beb4581f41d82a95b8e2d8db9311be34375bcd8d (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
{
  "ignorePatterns": [
    "docs/",
    "workspaces/*"
  ],
  "rules": {
    "no-shadow": "off",
    "no-console": "error"
  },
  "overrides": [{
    "files": [
      "scripts/**",
      "bin/**",
      "test/**"
    ],
    "rules": {
      "no-console": "off"
    }
  }]
}