eslint配置缩进空格处理

module.exports = {
     
    root: true,
    env: {
     
        node: true
    },
    extends: [
        'plugin:vue/essential',
        '@vue/standard'
    ],
    parserOptions: {
     
        parser: 'babel-eslint'
    },
    rules: {
     
        'indent': ['off', 2],//缩进
        'eol-last': 0,
        "space-before-function-paren": 0,//函数名和括号之间的空格
        'space-in-parens': 0,
        'func-call-spacing': 0,
        'no-console': process.env.NODE_ENV === 'production' ? 'warn' : 'off',
        'no-debugger': process.env.NODE_ENV === 'production' ? 'warn' : 'off'
    }
}

你可能感兴趣的:(eslint)