Skip to content

Instantly share code, notes, and snippets.

@DIEGOHORVATTI
Last active May 19, 2022 12:15
Show Gist options
  • Save DIEGOHORVATTI/9c78d46b8a97e0d0c12dc1222d280fe8 to your computer and use it in GitHub Desktop.
Save DIEGOHORVATTI/9c78d46b8a97e0d0c12dc1222d280fe8 to your computer and use it in GitHub Desktop.
minha configuração no eslint
{
"env": {
"es2021": true,
"node": true
},
"parserOptions": {
"ecmaVersion": "latest",
"sourceType": "module"
},
"rules": {
"semi": [
"error",
"never"
],
"quotes": [
"error",
"single"
],
"indent": [
"error",
2
],
"parser": "@babel/eslint-parser"
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment