module.exports = { root: true, env: { node: true, browser: true }, 'extends': [ 'plugin:vue/essential', // https://github.com/standard/standard/blob/master/docs/README-zhcn.md '@vue/standard' ], rules: { 'no-console': 'off', 'no-debugger': process.env.NODE_ENV === 'production' ? 'error' : 'off', 'object-curly-spacing': 0 }, parserOptions: { parser: 'babel-eslint' } }