allow underscore dangle in certain conditions
This commit is contained in:
parent
1490757351
commit
f2c5af4b65
6
index.js
6
index.js
@ -229,7 +229,11 @@ module.exports = {
|
||||
'no-new-object': 'error',
|
||||
'no-tabs': 'error',
|
||||
'no-trailing-spaces': 'error',
|
||||
'no-underscore-dangle': 'error',
|
||||
'no-underscore-dangle': ['error', {
|
||||
allowAfterThis: true,
|
||||
allowAfterSuper: true,
|
||||
enforceInMethodNames: true
|
||||
}],
|
||||
'no-unneeded-ternary': 'error',
|
||||
'no-whitespace-before-property': 'error',
|
||||
'nonblock-statement-body-position': ['error', 'below'],
|
||||
|
Loading…
x
Reference in New Issue
Block a user