feat(eslint): Rule "no-underscore-dangle"
Signed-off-by: Valentin Popov <info@valentineus.link>
This commit is contained in:
parent
228ce628a4
commit
877c5f7ad1
@ -196,7 +196,7 @@
|
|||||||
- [ ] "no-undef"
|
- [ ] "no-undef"
|
||||||
- [ ] "no-undef-init"
|
- [ ] "no-undef-init"
|
||||||
- [ ] "no-undefined"
|
- [ ] "no-undefined"
|
||||||
- [ ] "no-underscore-dangle"
|
- [X] "no-underscore-dangle"
|
||||||
- [ ] "no-unexpected-multiline"
|
- [ ] "no-unexpected-multiline"
|
||||||
- [ ] "no-unmodified-loop-condition"
|
- [ ] "no-unmodified-loop-condition"
|
||||||
- [ ] "no-unneeded-ternary"
|
- [ ] "no-unneeded-ternary"
|
||||||
|
@ -149,6 +149,15 @@
|
|||||||
"no-ternary": [
|
"no-ternary": [
|
||||||
"off"
|
"off"
|
||||||
],
|
],
|
||||||
|
"no-underscore-dangle": [
|
||||||
|
"error",
|
||||||
|
{
|
||||||
|
"allowAfterSuper": false,
|
||||||
|
"allowAfterThis": true,
|
||||||
|
"allowAfterThisConstructor": false,
|
||||||
|
"enforceInMethodNames": false
|
||||||
|
}
|
||||||
|
],
|
||||||
"no-unused-vars": [
|
"no-unused-vars": [
|
||||||
"error",
|
"error",
|
||||||
{
|
{
|
||||||
|
Loading…
x
Reference in New Issue
Block a user