module.exports = { root: true, ‘extends‘: [ ‘plugin:vue/essential‘, ‘@vue/standard‘ ], rules: { ‘object-curly-spacing‘: ["error", "always"], // allow async-await ‘generator-star-spacing‘: ‘off‘, // allow debugger during development ‘no-debugger‘: process.env.NODE_ENV === ‘production‘ ? ‘error‘ : ‘off‘, ‘vue/no-parsing-error‘: [2, { ‘x-invalid-end-tag‘: false }], ‘no-undef‘: ‘off‘ }, parserOptions: { parser: ‘babel-eslint‘ } }
ESLint {} 内部强制有空格 .eslintrc.js 配置文件 'object-curly-spacing': ["error", "always"],
原文地址:https://www.cnblogs.com/pengchenggang/p/11645708.html
时间: 2024-10-26 08:33:53