Skip to content

Commit 68ff88b

Browse files
sam-githubsjanuary
authored andcommitted
Add eslint support (#274)
1 parent a4c6828 commit 68ff88b

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

52 files changed

+4048
-3625
lines changed

.eslintrc

Lines changed: 13 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,13 @@
1+
{
2+
"extends": "strongloop",
3+
"env": {
4+
"node": true
5+
},
6+
"parserOptions": { "ecmaVersion": 6 },
7+
"rules": {
8+
"eqeqeq": "off",
9+
"max-len": ["error", 120, 8, {"ignoreComments": true}],
10+
"comma-dangle": "off",
11+
"spaced-comment": ["error", "always", { "exceptions": ["*"] }]
12+
}
13+
}

0 commit comments

Comments
 (0)