123456789101112131415161718192021222324252627282930313233 |
- module.exports = {
- root: true,
- parserOptions: {
- ecmaVersion: 2020,
- parser: 'babel-eslint',
- sourceType: 'module'
- },
- env: {
- browser: true,
- node: true,
- es6: true
- },
- globals: {
- XEUtils: true,
- g: true
- },
- extends: ['plugin:vue/essential', 'eslint:recommended', 'plugin:prettier/recommended'],
- plugins: ['prettier'],
- parser: 'vue-eslint-parser',
- // add your custom rules here
- //it is base on https://github.com/vuejs/eslint-config-vue
- rules: {
- 'prettier/prettier': ['error'],
- 'no-console': process.env.NODE_ENV === 'production' ? 'warn' : 'off',
- 'no-debugger': process.env.NODE_ENV === 'production' ? 'warn' : 'off',
- 'vue/multi-word-component-names': 'off',
- 'vue/no-reserved-component-names': 'off',
- 'no-unused-vars': [2, { vars: 'all', args: 'after-used' }],
- 'vue/no-v-for-template-key': 'off',
- 'vue/require-v-for-key': 'off',
- 'linebreak-style': [0,'error','windows',],
- }
- }
|