shadcn-vue/.eslintrc.cjs
zernonia cd3c767c71
chore: update registry (#151)
* fix: missing dependencies after import

* fix: demo component paths incorrect with subfolder
2023-11-06 12:47:31 +08:00

20 lines
492 B
JavaScript

// const process = require('node:process')
// process.env.ESLINT_TSCONFIG = 'tsconfig.json'
module.exports = {
extends: '@antfu',
rules: {
'vue/one-component-per-file': 'off',
'vue/no-reserved-component-names': 'off',
'vue/no-useless-v-bind': 'off',
'symbol-description': 'off',
'no-console': 'warn',
'no-tabs': 'off',
'no-invalid-character': 'off',
'import/first': 'off',
'@stylistic/js/no-tabs': 'off',
'n/prefer-global/process': 'off',
},
}