Permalink
Cannot retrieve contributors at this time
Join GitHub today
GitHub is home to over 50 million developers working together to host and review code, manage projects, and build software together.
Sign upmodule.exports = { | |
root: true, | |
parserOptions: { | |
parser: 'babel-eslint', | |
sourceType: 'module', | |
ecmaFeatures: { | |
legacyDecorators: true | |
} | |
}, | |
extends: [ | |
'@nuxtjs' | |
], | |
globals: { | |
BigInt: true | |
}, | |
rules: { | |
'no-console': 'error', | |
'no-debugger': 'error', | |
'no-template-curly-in-string': 0, | |
quotes: ['error', 'single', { avoidEscape: true, allowTemplateLiterals: true }], | |
// https://github.com/babel/babel-eslint/issues/799 | |
'template-curly-spacing': 0, | |
indent: ['error', 2, { SwitchCase: 1, ignoredNodes: ['TemplateLiteral'] }] | |
}, | |
overrides: [{ | |
files: ['test/fixtures/*/.nuxt*/**'], | |
rules: { | |
'vue/name-property-casing': 'error' | |
} | |
}, { | |
files: [ | |
'examples/storybook/**', | |
'examples/with-element-ui/**', | |
'examples/with-museui/**', | |
'examples/with-vue-material/**', | |
'examples/with-vuetify/**', | |
'examples/with-vuikit/**', | |
'examples/with-vux/**' | |
], | |
rules: { | |
'vue/component-name-in-template-casing': ['warn', 'kebab-case'] | |
} | |
}, { | |
files: ['test/fixtures/*/.nuxt*/**/+(App|index|server|client|nuxt).js'], | |
rules: { | |
'import/order': 'off' | |
} | |
}, { | |
files: ['test/fixtures/*/.nuxt*/**/client.js'], | |
rules: { | |
'no-console': ['error', { allow: ['error'] }] | |
} | |
}, { | |
files: ['test/fixtures/*/.nuxt*/**/router.js'], | |
rules: { | |
'no-console': ['error', { allow: ['warn'] }] | |
} | |
}, { | |
files: ['test/fixtures/*/.nuxt*/**/*.html'], | |
rules: { | |
semi: ['error', 'always', { omitLastInOneLineBlock: true }], | |
'no-var': 'off' | |
} | |
}, { | |
files: ['test/fixtures/*/.nuxt*/**/nuxt-error.vue'], | |
rules: { | |
'vue/singleline-html-element-content-newline': 'off' | |
} | |
}, { | |
// might be removed in the future, see https://github.com/standard/eslint-plugin-standard/issues/27 | |
files: ['test/fixtures/*/.nuxt*/**/nuxt-link.client.js'], | |
rules: { | |
'standard/no-callback-literal': 'off' | |
} | |
}] | |
} |