nope/.eslintrc.json

32 lines
618 B
JSON
Raw Permalink Normal View History

2020-11-23 06:09:31 +00:00
{
2021-11-25 07:41:16 +00:00
"root": true,
"parser": "@typescript-eslint/parser",
"plugins": [
"@typescript-eslint",
"prettier",
"jest"
],
"extends": [
"eslint:recommended",
"plugin:@typescript-eslint/recommended",
"prettier"
],
"rules": {
"no-console": 1,
"prettier/prettier": 2,
"@typescript-eslint/no-this-alias": [
"warn",
{
// "allowDestructuring": false, // Disallow `const { props, state } = this`; true by default
"allowedNames": [
"_this"
2020-11-23 06:09:31 +00:00
]
2021-11-25 07:41:16 +00:00
}
]
},
"env": {
"browser": true,
"node": true,
"jest/globals": true
}
2020-11-23 06:09:31 +00:00
}