Skip to content

Commit 818fe4b

Browse files
committedOct 18, 2017
Add eslintrc default file
1 parent 78cdbc3 commit 818fe4b

File tree

2 files changed

+18
-0
lines changed

2 files changed

+18
-0
lines changed
 
File renamed without changes.

‎eslint/.eslintrc.json

+18
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,18 @@
1+
{
2+
"env": {
3+
"browser": true,
4+
"es6": true
5+
},
6+
"extends": "airbnb-base",
7+
"parser": "babel-eslint",
8+
"parserOptions": {
9+
"sourceType": "module"
10+
},
11+
"rules": {
12+
"import/no-extraneous-dependencies": "off",
13+
"import/no-unresolved": "off",
14+
"import/first": "off",
15+
"import/extensions": "off",
16+
"max-len": ["error", 140]
17+
}
18+
}

0 commit comments

Comments
 (0)