Skip to content
This repository was archived by the owner on Dec 4, 2017. It is now read-only.

Commit 611c90d

Browse files
petebacondarwinIgorMinar
authored andcommitted
chore(eslint): add eslint config file
1 parent 40a1049 commit 611c90d

File tree

1 file changed

+30
-0
lines changed

1 file changed

+30
-0
lines changed

.eslintrc.js

Lines changed: 30 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,30 @@
1+
module.exports = {
2+
"globals": {
3+
"describe": true,
4+
"beforeEach": true,
5+
"it": true,
6+
"expect": true
7+
},
8+
"env": {
9+
"node": true
10+
},
11+
"extends": "eslint:recommended",
12+
"rules": {
13+
"indent": [
14+
"error",
15+
2
16+
],
17+
"linebreak-style": [
18+
"error",
19+
"unix"
20+
],
21+
"quotes": [
22+
"error",
23+
"single"
24+
],
25+
"semi": [
26+
"error",
27+
"always"
28+
]
29+
}
30+
};

0 commit comments

Comments
 (0)