UNPKG

eslint-config-alloy

Version:
22 lines (21 loc) 590 B
module.exports = { rules: { /** * 禁止出现连续的多个空格,除非是注释前,或对齐对象的属性、变量定义、import * @category Best Practices * @fixable */ 'no-multi-spaces': [ 'error', { ignoreEOLComments: true, exceptions: { Property: true, BinaryExpression: false, VariableDeclarator: true, ImportDeclaration: true } } ] } };