Skip to content

Instantly share code, notes, and snippets.

@Manyaka
Created August 14, 2019 07:19
Show Gist options
  • Save Manyaka/0e27c7c806d20108aca8da1b96ce8217 to your computer and use it in GitHub Desktop.
Save Manyaka/0e27c7c806d20108aca8da1b96ce8217 to your computer and use it in GitHub Desktop.
coffeelint.json
{
"coffeescript_error": {
"level": "error"
},
"cyclomatic_complexity": {
"level": "warn",
"value": 10
},
"max_line_length": {
"name": "max_line_length",
"value": 120,
"level": "warn",
"limitComments": true
},
"missing_fat_arrows": {
"level": "ignore"
},
"no_debugger": {
"level": "warn",
"console": true
},
"no_empty_functions": {
"level": "warn"
},
"no_empty_param_list": {
"level": "warn"
},
"no_private_function_fat_arrows": {
"level": "warn"
},
"no_stand_alone_at": {
"level": "ignore"
},
"no_tabs": {
"level": "error"
},
"no_trailing_semicolons": {
"level": "error"
},
"no_trailing_whitespace": {
"level": "error",
"allowed_in_comments": false,
"allowed_in_empty_lines": true
},
"no_unnecessary_fat_arrows": {
"level": "warn"
},
"space_operators": {
"level": "warn"
},
"spacing_after_comma": {
"level": "warn"
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment