Skip to content

Instantly share code, notes, and snippets.

@niraj-khatiwada
Last active April 4, 2020 15:46
Show Gist options
  • Save niraj-khatiwada/5cdc28f489510f0a6dabdb24a64191f2 to your computer and use it in GitHub Desktop.
Save niraj-khatiwada/5cdc28f489510f0a6dabdb24a64191f2 to your computer and use it in GitHub Desktop.
eslintrc.json/niraj-khatiwada
{
"env": {
"browser": true,
"es6": true
},
"extends": [
"plugin:react/recommended",
"airbnb"
],
"globals": {
"Atomics": "readonly",
"SharedArrayBuffer": "readonly"
},
"parserOptions": {
"ecmaFeatures": {
"jsx": true
},
"ecmaVersion": 2018,
"sourceType": "module"
},
"plugins": [
"react"
],
"rules": {
"no-console": "off",
"quotes":"off",
"linebreak-style": ["error", "windows"],
"semi":"off",
"no-trailing-spaces":"off",
"space-before-function-paren":"off"
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment