Skip to content

Instantly share code, notes, and snippets.

@akajumi
Created October 27, 2017 09:27
Show Gist options
  • Select an option

  • Save akajumi/6604bad3000912bcd51d7c4addfd0a58 to your computer and use it in GitHub Desktop.

Select an option

Save akajumi/6604bad3000912bcd51d7c4addfd0a58 to your computer and use it in GitHub Desktop.
{
"env": {
"browser": true,
"es6": true
},
"extends": "eslint:recommended",
"parser": "babel-eslint",
"parserOptions": {
"ecmaFeatures": {
"experimentalObjectRestSpread": true,
"jsx": true
},
"sourceType": "module"
},
"plugins": ["react"],
"rules": {
"indent": ["error", 2],
"linebreak-style": ["error", "unix"],
"quotes": ["error", "single"],
"semi": ["error", "never"],
"react/jsx-uses-vars": ["error"]
},
"globals": {
"process": false
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment