Last active
August 30, 2018 16:47
-
-
Save lsei/c875cea40595b2e9e1e09dc439f27a51 to your computer and use it in GitHub Desktop.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Show hidden characters
{ | |
"extends": "airbnb", | |
"parser": "babel-eslint", | |
"parserOptions": { | |
"sourceType": "module", | |
"allowImportExportEverywhere": false, | |
"codeFrame": false | |
}, | |
"rules": { | |
"no-use-before-define": "off", | |
"no-console": "off", | |
"keyword-spacing": "off", | |
"react/jsx-filename-extension": "off", | |
"react/jsx-wrap-multilines": "off", | |
"react/forbid-prop-types": "off", | |
"arrow-parens": ["error", "as-needed"], | |
"max-len": ["error", {"code": 120}], | |
"no-plusplus": ["error", { "allowForLoopAfterthoughts": true }] | |
} | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment