Skip to content

Instantly share code, notes, and snippets.

@og24715
Created June 21, 2019 07:28
Show Gist options
  • Save og24715/5963cdb71e6b474f14d5f80224d775e4 to your computer and use it in GitHub Desktop.
Save og24715/5963cdb71e6b474f14d5f80224d775e4 to your computer and use it in GitHub Desktop.
module.exports = {
"extends": "airbnb",
"plugins": [
"babel"
],
"parser": "babel-eslint",
"rules": {
"no-underscore-dangle": [
2, {
"allowAfterThis": true
}
],
"arrow-body-style": [1, "as-needed"],
"react/prop-types": [0],
"react/sort-comp": [0],
"react/jsx-tag-spacing": [0],
"react/prefer-stateless-function": [1],
"react/jsx-filename-extension": [0]
},
"env": {
"browser": true,
"node": true,
"jasmine": true
},
};
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment