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

.eslintrc.json - github.com/npm/cli.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
blob: 2968a2ea31901d919452c1fae54de02ad3d764b0 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
{
  "extends": ["@npmcli"],
  "overrides": [{
    "files": "test/**",
    "rules": {
      "no-extend-native": "off",
      "no-global-assign": "off"
    }
  }, {
    "files": ["lib/**"],
    "rules": {
      "no-console": "warn"
    }
  }]
}