forked from iod/cpnode-front
23 lines
444 B
JavaScript
23 lines
444 B
JavaScript
module.exports = {
|
|
root: true,
|
|
extends: '@daotl/eslint-config-vue/typescript',
|
|
parserOptions: {
|
|
project: 'tsconfig.json',
|
|
},
|
|
rules: {
|
|
'no-undef': 'off', // Turn off for `unplugin-auto-import`
|
|
'vue/multi-word-component-names': 'off',
|
|
},
|
|
overrides: [
|
|
{
|
|
files: [
|
|
'**/__tests__/*.{j,t}s?(x)',
|
|
'**/tests/unit/**/*.spec.{j,t}s?(x)',
|
|
],
|
|
env: {
|
|
jest: true,
|
|
},
|
|
},
|
|
],
|
|
}
|