UNPKG

eslint-config-alloy

Version:
17 lines (16 loc) 316 B
module.exports = { rules: { /** * 必须使用 if (foo === 5) 而不是 if (5 === foo) * @category Best Practices * @fixable */ yoda: [ 'error', 'never', { onlyEquality: true } ] } };