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 Jun 3, 2015
1 parent 2828afa commit c9a0013
Show file tree
Hide file tree
Showing 4 changed files with 42 additions and 0 deletions.
1 change: 1 addition & 0 deletions .coffeelintignore
@@ -0,0 +1 @@
spec/fixtures
1 change: 1 addition & 0 deletions .gitignore
@@ -0,0 +1 @@
node_modules
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 @@ -14,5 +14,8 @@
"license": "MIT",
"bugs": {
"url": "https://github.com/atom/language-xml/issues"
},
"devDependencies": {
"coffeelint": "^1.10.1"
}
}

0 comments on commit c9a0013

Please sign in to comment.