mirror of
https://github.com/BewlyBewly/BewlyBewly.git
synced 2025-04-14 13:15:29 +00:00
30 lines
476 B
JavaScript
30 lines
476 B
JavaScript
import antfu from '@antfu/eslint-config'
|
|
|
|
export default antfu({
|
|
jsonc: false,
|
|
rules: {
|
|
'vue/max-attributes-per-line': [
|
|
'error',
|
|
{
|
|
singleline: {
|
|
max: 5,
|
|
},
|
|
multiline: {
|
|
max: 5,
|
|
},
|
|
},
|
|
],
|
|
'no-alert': 'off',
|
|
'style/quote-props': 'off',
|
|
},
|
|
eslint: {
|
|
ignorePatterns: [
|
|
'dist',
|
|
'node_modules',
|
|
'public',
|
|
'extension',
|
|
'extension-firefox',
|
|
],
|
|
},
|
|
})
|