Skip to content

Instantly share code, notes, and snippets.

@mycolaos
Last active March 2, 2023 15:07
Show Gist options
  • Save mycolaos/c0af7aae319d0e1234a96f1034e06688 to your computer and use it in GitHub Desktop.
Save mycolaos/c0af7aae319d0e1234a96f1034e06688 to your computer and use it in GitHub Desktop.
{
"extends": ["eslint:recommended", "plugin:react/recommended"],
"parser": "babel-eslint",
"env": {
"browser": true,
"node": true
},
"plugins": [
"react"
],
"rules": {
"no-debugger": 0,
"no-console": 0,
"new-cap": 0,
"strict": 0,
"no-underscore-dangle": 0,
"no-use-before-define": 0,
"eol-last": 0,
"quotes": [2, "single"],
"jsx-quotes": [1, "prefer-single"]
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment