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

.eslintrc « javascripts « spec - gitlab.com/gitlab-org/gitlab-foss.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
blob: dcbcd014dc3c2730c05f4e411268e0872d18ee12 (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
28
{
  "env": {
    "jasmine": true
  },
  "extends": "plugin:jasmine/recommended",
  "globals": {
    "appendLoadFixtures": false,
    "appendLoadStyleFixtures": false,
    "appendSetFixtures": false,
    "appendSetStyleFixtures": false,
    "getJSONFixture": false,
    "loadFixtures": false,
    "loadJSONFixtures": false,
    "loadStyleFixtures": false,
    "preloadFixtures": false,
    "preloadStyleFixtures": false,
    "readFixtures": false,
    "sandbox": false,
    "setFixtures": false,
    "setStyleFixtures": false,
    "spyOnEvent": false
  },
  "plugins": ["jasmine"],
  "rules": {
    "prefer-arrow-callback": 0,
    "func-names": 0
  }
}