change eslint rule.

This commit is contained in:
2018-05-23 00:37:57 +08:00
parent 5b277637c5
commit ca90c45cd7

View File

@@ -7,7 +7,12 @@
"rules": {
"comma-dangle": [2, "never"],
"spaced-comment": "off",
"quotes": ["error", "double"],
"quotes": "off",
"indent": "off",
"func-names": "off",
"no-console": "off",
"no-plusplus": "off",
"wrap-iife": ["error", "any"],
"react/jsx-filename-extension": "off"
}
}