forked from shprink/BttrLazyLoading
-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Run by typing 'cake lint' on the command line.
- Loading branch information
1 parent
269324e
commit 5af83e7
Showing
7 changed files
with
160 additions
and
16 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -5,3 +5,4 @@ | |
.settings | ||
/node_modules | ||
/demo/js/analytics.js | ||
*.log |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,114 @@ | ||
{ | ||
"coffeescript_error": { | ||
"level": "error" | ||
}, | ||
"arrow_spacing": { | ||
"name": "arrow_spacing", | ||
"level": "ignore" | ||
}, | ||
"no_tabs": { | ||
"name": "no_tabs", | ||
"level": "ignore" | ||
}, | ||
"no_trailing_whitespace": { | ||
"name": "no_trailing_whitespace", | ||
"level": "error", | ||
"allowed_in_comments": false, | ||
"allowed_in_empty_lines": true | ||
}, | ||
"max_line_length": { | ||
"name": "max_line_length", | ||
"value": 80, | ||
"level": "ignore", | ||
"limitComments": true | ||
}, | ||
"line_endings": { | ||
"name": "line_endings", | ||
"level": "ignore", | ||
"value": "unix" | ||
}, | ||
"no_trailing_semicolons": { | ||
"name": "no_trailing_semicolons", | ||
"level": "error" | ||
}, | ||
"indentation": { | ||
"name": "indentation", | ||
"value": 2, | ||
"level": "error" | ||
}, | ||
"camel_case_classes": { | ||
"name": "camel_case_classes", | ||
"level": "error" | ||
}, | ||
"colon_assignment_spacing": { | ||
"name": "colon_assignment_spacing", | ||
"level": "ignore", | ||
"spacing": { | ||
"left": 0, | ||
"right": 0 | ||
} | ||
}, | ||
"no_implicit_braces": { | ||
"name": "no_implicit_braces", | ||
"level": "ignore", | ||
"strict": true | ||
}, | ||
"no_plusplus": { | ||
"name": "no_plusplus", | ||
"level": "ignore" | ||
}, | ||
"no_throwing_strings": { | ||
"name": "no_throwing_strings", | ||
"level": "error" | ||
}, | ||
"no_backticks": { | ||
"name": "no_backticks", | ||
"level": "error" | ||
}, | ||
"no_implicit_parens": { | ||
"name": "no_implicit_parens", | ||
"level": "ignore" | ||
}, | ||
"no_empty_param_list": { | ||
"name": "no_empty_param_list", | ||
"level": "ignore" | ||
}, | ||
"no_stand_alone_at": { | ||
"name": "no_stand_alone_at", | ||
"level": "ignore" | ||
}, | ||
"space_operators": { | ||
"name": "space_operators", | ||
"level": "ignore" | ||
}, | ||
"duplicate_key": { | ||
"name": "duplicate_key", | ||
"level": "error" | ||
}, | ||
"empty_constructor_needs_parens": { | ||
"name": "empty_constructor_needs_parens", | ||
"level": "ignore" | ||
}, | ||
"cyclomatic_complexity": { | ||
"name": "cyclomatic_complexity", | ||
"value": 10, | ||
"level": "ignore" | ||
}, | ||
"newlines_after_classes": { | ||
"name": "newlines_after_classes", | ||
"value": 3, | ||
"level": "ignore" | ||
}, | ||
"no_unnecessary_fat_arrows": { | ||
"name": "no_unnecessary_fat_arrows", | ||
"level": "warn" | ||
}, | ||
"missing_fat_arrows": { | ||
"name": "missing_fat_arrows", | ||
"level": "ignore" | ||
}, | ||
"non_empty_constructor_needs_parens": { | ||
"name": "non_empty_constructor_needs_parens", | ||
"level": "ignore" | ||
} | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,21 @@ | ||
0 info it worked if it ends with ok | ||
1 verbose cli [ 'node', '/usr/local/bin/npm', 'install', '.' ] | ||
2 info using [email protected] | ||
3 info using [email protected] | ||
4 error install Couldn't read dependencies | ||
5 error Failed to parse json | ||
5 error Unexpected token } | ||
6 error File: /Users/thelinmichael/workspace/BttrLazyLoading/package.json | ||
7 error Failed to parse package.json data. | ||
7 error package.json must be actual JSON, not just JavaScript. | ||
7 error | ||
7 error This is not a bug in npm. | ||
7 error Tell the package author to fix their package.json file. JSON.parse | ||
8 error System Darwin 13.0.0 | ||
9 error command "node" "/usr/local/bin/npm" "install" "." | ||
10 error cwd /Users/thelinmichael/workspace/BttrLazyLoading | ||
11 error node -v v0.10.22 | ||
12 error npm -v 1.3.21 | ||
13 error file /Users/thelinmichael/workspace/BttrLazyLoading/package.json | ||
14 error code EJSONPARSE | ||
15 verbose exit [ 1, true ] |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters