Skip to content

Instantly share code, notes, and snippets.

@decodedmrq
Created February 21, 2021 14:59
Show Gist options
  • Save decodedmrq/3e5d2f4728faf940978495a6037cc606 to your computer and use it in GitHub Desktop.
Save decodedmrq/3e5d2f4728faf940978495a6037cc606 to your computer and use it in GitHub Desktop.
{
"plugins": [
"react"
],
"extends": [
"eslint:recommended",
"plugin:react/recommended"
],
"rules": {
"indent": [
2,
2,
{
"SwitchCase": 1
}
],
"linebreak-style": [
2,
"unix"
],
"quotes": [
2,
"single"
],
"semi": [
2,
"always"
],
"curly": [
2,
"all"
],
"camelcase": [
2,
{
"properties": "always"
}
],
"eqeqeq": [
2,
"smart"
],
"one-var-declaration-per-line": [
2,
"always"
],
"new-cap": 2,
"no-case-declarations": 0
},
"parserOptions": {
"ecmaVersion": 6,
"sourceType": "module",
"ecmaFeatures": {
"jsx": true
}
},
"env": {
"browser": true,
"es6": true
},
"globals": {
"arguments": true
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment