Skip to content

Instantly share code, notes, and snippets.

@thauska
Last active February 21, 2020 19:28
Show Gist options
  • Save thauska/b4d33cc1bc8b8f39a3c7d87d96894c19 to your computer and use it in GitHub Desktop.
Save thauska/b4d33cc1bc8b8f39a3c7d87d96894c19 to your computer and use it in GitHub Desktop.
Configuração vscode
{
"env": {
"browser": true,
"commonjs": true,
"es6": true,
"node": true
},
"parserOptions": {
"ecmaFeatures": {
"jsx": true
},
"sourceType": "module"
},
"rules": {
"no-const-assign": "warn",
"no-this-before-super": "warn",
"no-undef": "warn",
"no-unreachable": "warn",
"no-unused-vars": "warn",
"constructor-super": "warn",
"valid-typeof": "warn"
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment