Skip to content
This repository has been archived by the owner on Aug 7, 2023. It is now read-only.

Commit

Permalink
updated coffeelint rules, long comment for test
Browse files Browse the repository at this point in the history
  • Loading branch information
arusakov committed Feb 29, 2016
1 parent 528b63b commit 36a224c
Show file tree
Hide file tree
Showing 2 changed files with 16 additions and 14 deletions.
28 changes: 14 additions & 14 deletions coffeelint.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"arrow_spacing": {
"level": "ignore"
"level": "error"
},
"braces_spacing": {
"level": "ignore",
Expand All @@ -14,10 +14,10 @@
"level": "error"
},
"colon_assignment_spacing": {
"level": "ignore",
"level": "error",
"spacing": {
"left": 0,
"right": 0
"right": 1
}
},
"cyclomatic_complexity": {
Expand All @@ -34,14 +34,14 @@
"level": "warn"
},
"eol_last": {
"level": "ignore"
"level": "error"
},
"indentation": {
"value": 2,
"level": "error"
},
"line_endings": {
"level": "ignore",
"level": "error",
"value": "unix"
},
"max_line_length": {
Expand All @@ -54,21 +54,21 @@
"is_strict": false
},
"newlines_after_classes": {
"value": 3,
"level": "ignore"
"value": 2,
"level": "error"
},
"no_backticks": {
"level": "error"
},
"no_debugger": {
"level": "warn",
"level": "error",
"console": false
},
"no_empty_functions": {
"level": "ignore"
"level": "error"
},
"no_empty_param_list": {
"level": "ignore"
"level": "error"
},
"no_implicit_braces": {
"level": "ignore",
Expand All @@ -79,13 +79,13 @@
"strict": true
},
"no_interpolation_in_single_quotes": {
"level": "ignore"
"level": "error"
},
"no_nested_string_interpolation": {
"level": "warn"
},
"no_plusplus": {
"level": "ignore"
"level": "error"
},
"no_private_function_fat_arrows": {
"level": "warn"
Expand All @@ -97,7 +97,7 @@
"level": "error"
},
"no_this": {
"level": "ignore"
"level": "error"
},
"no_throwing_strings": {
"level": "error"
Expand All @@ -111,7 +111,7 @@
"allowed_in_empty_lines": true
},
"no_unnecessary_double_quotes": {
"level": "ignore"
"level": "error"
},
"no_unnecessary_fat_arrows": {
"level": "warn"
Expand Down
2 changes: 2 additions & 0 deletions lib/init.coffee
Original file line number Diff line number Diff line change
Expand Up @@ -4,6 +4,8 @@ requireResolve = require 'resolve'

TSLINT_MODULE_NAME = 'tslint'

# big stringbig stringbig stringbig stringbig stringbig stringbig stringbig string

module.exports =

config:
Expand Down

0 comments on commit 36a224c

Please sign in to comment.