Created
October 20, 2016 12:35
-
-
Save rakannimer/19b5d622e055c3c288df6e547e26ce9b to your computer and use it in GitHub Desktop.
My eslint
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
{ | |
"parser": "babel-eslint", | |
"env": { | |
"browser": true, | |
"node": true | |
}, | |
"extends": "airbnb", | |
"rules": { | |
"react/jsx-filename-extension": [1, { "extensions": [".js", ".jsx"] }], | |
"import/prefer-default-export": "off", | |
"no-bitwise": "off", | |
"react/prop-types": "off", | |
"react/prefer-stateless-function": "off", | |
"jsx-a11y/no-static-element-interactions": off | |
} | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
(
export PKG=eslint-config-airbnb;
npm info "$PKG" peerDependencies --json | command sed 's/[{},]//g ; s/: /@/g' | xargs yarn add --dev "$PKG"
)