1234567891011121314151617 |
- module.exports = {
- root: true,
- env: {
- node: true
- },
- // extends: ['plugin:vue/essential', '@vue/prettier'],
- // rules: {
- // camelcase: 'off',
- // quotes: ['error', 'single'],
- // indent: ['error', 2, { SwitchCase: 1 }],
- // 'no-console': process.env.NODE_ENV === 'production' ? 'error' : 'off',
- // 'no-debugger': process.env.NODE_ENV === 'production' ? 'error' : 'off'
- // },
- parserOptions: {
- parser: 'babel-eslint'
- }
- };
|