diff options
author | Noah Loomans <noahloomans@gmail.com> | 2018-01-29 16:31:05 +0100 |
---|---|---|
committer | GitHub <noreply@github.com> | 2018-01-29 16:31:05 +0100 |
commit | 694580bc532239a32c2fbf61d7f09e793fd1cb11 (patch) | |
tree | acd21e2654d6c5e70dc41c675972794ce95b4062 /.eslintrc.js | |
parent | f18692872cdc28d29917247ef4f8ef7553a8b023 (diff) | |
parent | 9a9edd1865d619caada787231c8bb34be25af3af (diff) |
Merge pull request #15 from nloomans/react
Move project over to react
Diffstat (limited to '.eslintrc.js')
-rw-r--r-- | .eslintrc.js | 14 |
1 files changed, 14 insertions, 0 deletions
diff --git a/.eslintrc.js b/.eslintrc.js new file mode 100644 index 0000000..b253a04 --- /dev/null +++ b/.eslintrc.js @@ -0,0 +1,14 @@ +module.exports = { + "extends": "airbnb", + "env": { + "browser": true, + "node": true, + "jest": true, + }, + "rules": { + "react/jsx-filename-extension": ["error", { "extensions": [".js"] }], + "no-underscore-dangle": ["error", { "allow": ["_test"] }], + "class-methods-use-this": "off", + "no-prototype-builtins": "off", + } +}; |