Skip to content

Instantly share code, notes, and snippets.

@innerdaze
Created October 10, 2018 12:35
Show Gist options
  • Save innerdaze/e8cb5eb517aab07717f38587ce1baad3 to your computer and use it in GitHub Desktop.
Save innerdaze/e8cb5eb517aab07717f38587ce1baad3 to your computer and use it in GitHub Desktop.
Default ESlint config
{
"parser": "babel-eslint",
"env": {
"browser": true,
"node": true,
"jest": true
},
"settings": {
"ecmascript": 6,
"jsx": true
},
"plugins": ["react"],
"rules": {
"semi": ["error", "never"],
"strict": 0,
"quotes": ["error", "single"],
"no-unused-vars": 0,
"camelcase": 0,
"no-underscore-dangle": 0,
"jsx-quotes": ["error", "prefer-single"]
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment