12345678910111213141516171819202122232425262728293031323334353637383940 |
- module.exports = {
- root: true,
- parserOptions: {
- parser: '@babel/eslint-parser',
- sourceType: 'module',
- ecmaVersion: 2015
- },
- plugins: ['vue'],
- env: {
- browser: true,
- node: true,
- es6: true
- },
- rules: {
-
- 'no-console': 'off',
-
- 'vue/no-v-html': 'off',
- 'vue/multi-word-component-names': 'off',
- 'vue/no-mutating-props': 'off',
- 'no-prototype-builtins': 'off',
- 'array-callback-return': 'off',
- 'prefer-regex-literals': 'off',
- 'multiline-ternary': 'off',
- 'vue/order-in-components': 'off',
- 'no-eval': 'off',
- 'vue/no-template-shadow': 'off'
- },
- extends: [
- 'plugin:vue/recommended',
- 'eslint:recommended',
- '@vue/standard'
- ]
- }
|