Skip to content
This repository has been archived by the owner on Dec 15, 2022. It is now read-only.

Commit

Permalink
Add coffeelint support
Browse files Browse the repository at this point in the history
  • Loading branch information
mnquintana committed May 27, 2015
1 parent c9ca80e commit 99db01d
Show file tree
Hide file tree
Showing 3 changed files with 41 additions and 0 deletions.
1 change: 1 addition & 0 deletions .coffeelintignore
@@ -0,0 +1 @@
spec/fixtures
37 changes: 37 additions & 0 deletions coffeelint.json
@@ -0,0 +1,37 @@
{
"max_line_length": {
"level": "ignore"
},
"no_empty_param_list": {
"level": "error"
},
"arrow_spacing": {
"level": "error"
},
"no_interpolation_in_single_quotes": {
"level": "error"
},
"no_debugger": {
"level": "error"
},
"prefer_english_operator": {
"level": "error"
},
"colon_assignment_spacing": {
"spacing": {
"left": 0,
"right": 1
},
"level": "error"
},
"braces_spacing": {
"spaces": 0,
"level": "error"
},
"spacing_after_comma": {
"level": "error"
},
"no_stand_alone_at": {
"level": "error"
}
}
3 changes: 3 additions & 0 deletions package.json
Expand Up @@ -19,5 +19,8 @@
"repository": "https://github.com/atom/package-generator",
"engines": {
"atom": "*"
},
"devDependencies": {
"coffeelint": "^1.9.7"
}
}

0 comments on commit 99db01d

Please sign in to comment.