Skip to content

Commit e158fbc

Browse files
committed
base: disable no-nested-ternary
1 parent 9134422 commit e158fbc

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

rules/base.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -220,7 +220,7 @@ module.exports = {
220220
'no-multi-assign': 0, // disallow use of chained assignment expressions
221221
'no-multiple-empty-lines': [1, { max: 2, maxEOF: 1 }], // disallow multiple empty lines
222222
'no-negated-condition': 0, // disallow negated conditions
223-
'no-nested-ternary': 1, // disallow nested ternary expressions
223+
'no-nested-ternary': 0, // disallow nested ternary expressions
224224
'no-new-object': 0, // disallow `Object` constructors
225225
'no-plusplus': 0, // disallow the unary operators `++` and `--`
226226
'no-restricted-syntax': 0, // disallow specified syntax

0 commit comments

Comments
 (0)