Skip to content

Commit

Permalink
修改eslint
Browse files Browse the repository at this point in the history
  • Loading branch information
genophy committed Mar 5, 2017
1 parent 86486d1 commit 5a7049b
Showing 1 changed file with 8 additions and 3 deletions.
11 changes: 8 additions & 3 deletions .eslintrc.json
Original file line number Diff line number Diff line change
@@ -1,9 +1,14 @@
{
"extends": "google",
"parserOptions": {
"ecmaVersion": 6
"ecmaVersion": 6,
"sourceType": "module",
"ecmaFeatures": {
"modules": true
}
},
"extends": "google",
"rules": {
"no-var": 0
"no-var": 0,
"comma-dangle": 0
}
}

0 comments on commit 5a7049b

Please sign in to comment.