Skip to content

Instantly share code, notes, and snippets.

@vizio360
Created March 4, 2013 15:14
Show Gist options
  • Save vizio360/5082916 to your computer and use it in GitHub Desktop.
Save vizio360/5082916 to your computer and use it in GitHub Desktop.
CoffeeLint.json
{
"no_tabs" : {
"level" : "error"
},
"no_trailing_whitespace" : {
"level" : "error"
},
"max_line_length" : {
"value": 120,
"level" : "error"
},
"camel_case_classes" : {
"level" : "error"
},
"indentation" : {
"value" : 4,
"level" : "error"
},
"no_implicit_braces" : {
"level" : "ignore"
},
"no_trailing_semicolons" : {
"level" : "error"
},
"no_plusplus" : {
"level" : "ignore"
},
"no_throwing_strings" : {
"level" : "error"
},
"cyclomatic_complexity" : {
"value" : 11,
"level" : "ignore"
},
"line_endings" : {
"value" : "unix",
"level" : "ignore"
},
"no_implicit_parens" : {
"level" : "ignore"
},
"no_stand_alone_at" : {
"level": "ignore"
},
"no_empty_param_list" : {
"level": "error"
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment