diff options
author | Shin'ya Ueoka <ueokande@i-beam.org> | 2017-11-26 17:04:59 +0900 |
---|---|---|
committer | GitHub <noreply@github.com> | 2017-11-26 17:04:59 +0900 |
commit | 0b37c2250e21e8c40c2c5e9abfe51903458cc94d (patch) | |
tree | 64555dd19f414d27308ec3cd43ed6bdfef7d077b /.eslintrc | |
parent | 2ae2d1582d6b9f8059b1a3f947d442869a14fbdc (diff) | |
parent | c23333110d846b4bf4a76422853820875b74e93a (diff) |
Merge pull request #248 from ueokande/gui-settings
GUI Settings
Diffstat (limited to '.eslintrc')
-rw-r--r-- | .eslintrc | 4 |
1 files changed, 4 insertions, 0 deletions
@@ -36,6 +36,7 @@ "newline-after-var": "off", "newline-before-return": "off", "newline-per-chained-call": "off", + "no-alert": "off", "no-bitwise": "off", "no-console": ["error", { "allow": ["warn", "error"] }], "no-empty-function": "off", @@ -44,6 +45,8 @@ "no-plusplus": "off", "no-ternary": "off", "no-undefined": "off", + "no-undef-init": "off", + "no-unused-vars": ["error", { "varsIgnorePattern": "h" }], "no-use-before-define": "off", "no-warning-comments": "off", "object-curly-newline": ["error", { "consistent": true }], @@ -65,5 +68,6 @@ "react/jsx-indent": ["error", 2], "react/prop-types": "off", + "react/react-in-jsx-scope": "off" } } |