Skip to content

Instantly share code, notes, and snippets.

@cookernetes
Created November 13, 2021 18:53
Show Gist options
  • Save cookernetes/6b7380a85211232e070cb48829c72be7 to your computer and use it in GitHub Desktop.
Save cookernetes/6b7380a85211232e070cb48829c72be7 to your computer and use it in GitHub Desktop.
Psuedodoro's Best ESLint Rules
{
"rules": {
"quotes": [
"error",
"double"
],
"semi": [
"error",
"always"
],
"no-unused-vars": [
"warn",
{
"vars": "all",
"args": "after-used",
"ignoreRestSiblings": false
}
],
"indent": [
"error",
"tab",
{
"SwitchCase": 1
}
],
"no-tabs": "off"
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment