UNPKG

eslint-config-alloy

Version:
18 lines (17 loc) 390 B
module.exports = { rules: { /** * 对象字面量中冒号前面禁止有空格,后面必须有空格 * @category Uncategorized * @fixable */ 'vue/key-spacing': [ 'error', { beforeColon: false, afterColon: true, mode: 'strict' } ] } };