Skip to content

Commit 7e2a349

Browse files
committedSep 13, 2016
chore: refactored and linted
1 parent 9906bd3 commit 7e2a349

File tree

193 files changed

+4177
-4315
lines changed

Some content is hidden

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

193 files changed

+4177
-4315
lines changed
 

‎.eslintignore

+1
Original file line numberDiff line numberDiff line change
@@ -0,0 +1 @@
1+
**/fixtures/*

‎.eslintrc

+39
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,39 @@
1+
// Use this file as a starting point for your project's .eslintrc.
2+
// Copy this file, and add rule overrides as needed.
3+
{
4+
"parser": "babel-eslint",
5+
"extends": "airbnb",
6+
"plugins": [
7+
"babel"
8+
],
9+
"globals": {
10+
/* mocha */
11+
"describe",
12+
"it"
13+
},
14+
"rules": {
15+
"no-param-reassign": 0,
16+
/* TODO fix this; this should work w/import/resolver below, but doesn't */
17+
"import/no-extraneous-dependencies": 0,
18+
"import/no-unresolved": 0,
19+
"no-control-regex": 0,
20+
"import/prefer-default-export": 0,
21+
"generator-star-spacing": 0,
22+
"babel/generator-star-spacing": 0,
23+
"func-names": 0,
24+
"no-useless-escape": 0,
25+
"no-confusing-arrow": 0,
26+
},
27+
"settings": {
28+
"import/resolver": {
29+
"babel-module": {
30+
"extensions": [".js"]
31+
}
32+
}
33+
},
34+
"parserOptions":{
35+
"ecmaFeatures": {
36+
"experimentalObjectRestSpread": true
37+
}
38+
}
39+
}

0 commit comments

Comments
 (0)