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

.eslintrc « ng-dialog « node_modules - github.com/matomo-org/matomo.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
blob: d4f5ef7186e491ada69cf3bbc445235d2d64e66a (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
// http://eslint.org/docs/rules
{
  "env": {
    "browser": true,
    "node": true,
    "mocha": true
  },
  "rules": {
    "strict": 0,
    "no-extra-strict": 0,
    "quotes": [2, "single"],
    "no-underscore-dangle": 0,
    "no-unused-vars": 1,
    "no-unused-expressions": 0,
    "new-cap": 0,
    "consistent-return": 0,
    "no-use-before-define": 0,
    "no-shadow-restricted-names": 0
  },
  "globals": {
    "angular": true,
    "define": true,
    "expect": true,
    "inject": true,
    "jasmine": true
  }
}