Created
May 25, 2018 13:15
-
-
Save babie/9dbdb2de48a67e7f90e4c8382b697181 to your computer and use it in GitHub Desktop.
This file contains hidden or 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", "standard", "prettier"], | |
"plugins": ["react", "mocha", "standard", "prettier"], | |
"parserOptions": { | |
"ecmaFeatures": { | |
"jsx": true | |
} | |
}, | |
"env": { | |
"mocha": true, | |
"browser": true, | |
"node": true | |
}, | |
"rules": { | |
"no-console": "off", | |
"react/jsx-filename-extension": [ | |
"error", | |
{ "extensions": [".js", ".jsx"] } | |
], | |
"prettier/prettier": ["error", { "singleQuote": true, "semi": false }], | |
"yoda": "off" | |
} | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment