UNPKG

eslint-config-alloy

Version:
18 lines (17 loc) 473 B
module.exports = { rules: { /** * 禁止使用特殊空白符(比如全角空格),除非是出现在字符串、正则表达式或模版字符串中 * @category Possible Errors */ 'no-irregular-whitespace': [ 'error', { skipStrings: true, skipComments: false, skipRegExps: true, skipTemplates: true } ] } };