summaryrefslogtreecommitdiff
path: root/.eslintrc
blob: ca6ce1d48bd571d35fb8351c74ae21e7d0c759cd (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
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
# Set up globals
globals:
  angular: false

extends: openstack

# Most environment options are not explicitly enabled or disabled, only
# included here for completeness' sake. They are commented out, because the
# global updates.py script would otherwise override them during a global
# requirements synchronization.
#
# Individual projects should choose which platforms they deploy to.

env:
  # browser global variables.
  browser: true

  # Adds all of the Jasmine testing global variables for version 1.3 and 2.0.
  jasmine: true


# Below we adjust rules specific to horizon's usage of openstack's linting
# rules, and its own plugin inclusions.
rules:
  #############################################################################
  # Disabled Rules from eslint-config-openstack
  #############################################################################
  valid-jsdoc: [1, {
    requireParamDescription: false
  }]
  no-undefined: 1
  brace-style: 1
  no-extra-parens: 1
  callback-return: 1
  block-scoped-var: 1
  quote-props: 0
  space-in-parens: 1
  no-use-before-define: 1
  no-unneeded-ternary: 1
  consistent-return: 0
  no-unmodified-loop-condition: 0

  #############################################################################
  # Angular Plugin Customization
  #############################################################################

  angular/controller-as-vm:
    - 1
    - "ctrl"

  # Remove after migrating to angular 1.4 or later.
  angular/no-cookiestore:
    - 1