aboutsummaryrefslogtreecommitdiffstats
path: root/actionview/coffeelint.json
blob: cf8bf2171bb844874adcde8e53ac141cd192030e (plain) (blame)
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
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
{
  "arrow_spacing": {
    "level": "warn"
  },
  "braces_spacing": {
    "level": "warn",
    "spaces": 1,
    "empty_object_spaces": 0
  },
  "camel_case_classes": {
    "level": "error"
  },
  "coffeescript_error": {
    "level": "error"
  },
  "colon_assignment_spacing": {
    "level": "warn",
    "spacing": {
      "left": 0,
      "right": 1
    }
  },
  "cyclomatic_complexity": {
    "level": "warn",
    "value": 10
  },
  "duplicate_key": {
    "level": "error"
  },
  "empty_constructor_needs_parens": {
    "level": "warn"
  },
  "ensure_comprehensions": {
    "level": "warn"
  },
  "eol_last": {
    "level": "warn"
  },
  "indentation": {
    "value": 2,
    "level": "error"
  },
  "line_endings": {
    "level": "warn",
    "value": "unix"
  },
  "max_line_length": {
    "value": 80,
    "level": "ignore",
    "limitComments": true
  },
  "missing_fat_arrows": {
    "level": "ignore"
  },
  "newlines_after_classes": {
    "value": 3,
    "level": "warn"
  },
  "no_backticks": {
    "level": "error"
  },
  "no_debugger": {
    "level": "warn",
    "console": false
  },
  "no_empty_functions": {
    "level": "warn"
  },
  "no_empty_param_list": {
    "level": "warn"
  },
  "no_implicit_braces": {
    "level": "ignore",
    "strict": true
  },
  "no_implicit_parens": {
    "level": "ignore",
    "strict": true
  },
  "no_interpolation_in_single_quotes": {
    "level": "warn"
  },
  "no_nested_string_interpolation": {
    "level": "warn"
  },
  "no_plusplus": {
    "level": "warn"
  },
  "no_private_function_fat_arrows": {
    "level": "warn"
  },
  "no_stand_alone_at": {
    "level": "warn"
  },
  "no_tabs": {
    "level": "error"
  },
  "no_this": {
    "level": "warn"
  },
  "no_throwing_strings": {
    "level": "error"
  },
  "no_trailing_semicolons": {
    "level": "error"
  },
  "no_trailing_whitespace": {
    "level": "error",
    "allowed_in_comments": false,
    "allowed_in_empty_lines": true
  },
  "no_unnecessary_double_quotes": {
    "level": "warn"
  },
  "no_unnecessary_fat_arrows": {
    "level": "warn"
  },
  "non_empty_constructor_needs_parens": {
    "level": "warn"
  },
  "prefer_english_operator": {
    "level": "ignore",
    "doubleNotLevel": "warn"
  },
  "space_operators": {
    "level": "warn"
  },
  "spacing_after_comma": {
    "level": "warn"
  },
  "transform_messes_up_line_numbers": {
    "level": "warn"
  }
}