禁用否定表达式(no-negated-condition) ... /*eslint no-negated-condition: "error"*/ if (!a) { doSomething(); } else { doSomethingElse(); } if (a != b) ...
確定! 回上一頁