Tweak coffeelint.json to my liking

This commit is contained in:
2014-08-20 11:30:07 +01:00
parent b3af83dcbd
commit fd4f7ca309

View File

@@ -10,10 +10,10 @@
"level": "error" "level": "error"
}, },
"colon_assignment_spacing": { "colon_assignment_spacing": {
"level": "ignore", "level": "warn",
"spacing": { "spacing": {
"left": 0, "left": 0,
"right": 0 "right": 1
} }
}, },
"cyclomatic_complexity": { "cyclomatic_complexity": {
@@ -35,7 +35,7 @@
"value": "unix" "value": "unix"
}, },
"max_line_length": { "max_line_length": {
"value": 80, "value": 78,
"level": "error", "level": "error",
"limitComments": true "limitComments": true
}, },
@@ -53,7 +53,7 @@
"level": "warn" "level": "warn"
}, },
"no_empty_functions": { "no_empty_functions": {
"level": "ignore" "level": "warn"
}, },
"no_empty_param_list": { "no_empty_param_list": {
"name": "no_empty_param_list", "name": "no_empty_param_list",
@@ -68,13 +68,13 @@
"level": "ignore" "level": "ignore"
}, },
"no_interpolation_in_single_quotes": { "no_interpolation_in_single_quotes": {
"level": "ignore" "level": "error"
}, },
"no_plusplus": { "no_plusplus": {
"level": "ignore" "level": "ignore"
}, },
"no_stand_alone_at": { "no_stand_alone_at": {
"level": "ignore" "level": "warn"
}, },
"no_tabs": { "no_tabs": {
"level": "error" "level": "error"
@@ -88,7 +88,7 @@
"no_trailing_whitespace": { "no_trailing_whitespace": {
"level": "error", "level": "error",
"allowed_in_comments": false, "allowed_in_comments": false,
"allowed_in_empty_lines": true "allowed_in_empty_lines": false
}, },
"no_unnecessary_double_quotes": { "no_unnecessary_double_quotes": {
"level": "ignore" "level": "ignore"
@@ -100,6 +100,6 @@
"level": "ignore" "level": "ignore"
}, },
"space_operators": { "space_operators": {
"level": "ignore" "level": "warn"
} }
} }