123456789101112131415161718192021222324252627282930313233 |
- module.exports = {
- root: true,
- parserOptions: {
- parser: 'babel-eslint'
- },
- env: {
- browser: true,
- node: true,
- mocha: true
- },
- "globals": {
- "expect": true
- },
- extends: [
- 'plugin:vue/recommended',
- 'plugin:vue-a11y/base',
- 'standard'
- ],
- plugins: [
- 'vue',
- 'vue-a11y'
- ],
- rules: {
- 'generator-star-spacing': 'off',
- 'no-debugger': process.env.NODE_ENV === 'production' ? 'error' : 'off',
- 'vue/singleline-html-element-content-newline': 'off',
- 'vue/multiline-html-element-content-newline': 'off',
- 'vue/max-attributes-per-line': 'off',
- 'vue/no-v-html': 'off',
- 'vue/require-default-prop': 'off',
- 'vue-a11y/label-has-for': 'off'
- }
- }
|