mirror of
https://github.com/BewlyBewly/BewlyBewly.git
synced 2025-04-14 13:15:29 +00:00
28 lines
436 B
JavaScript
28 lines
436 B
JavaScript
const antfu = require('@antfu/eslint-config').default
|
|
|
|
module.exports = antfu({
|
|
jsonc: false,
|
|
rules: {
|
|
'vue/max-attributes-per-line': [
|
|
'error',
|
|
{
|
|
singleline: {
|
|
max: 5,
|
|
},
|
|
multiline: {
|
|
max: 5,
|
|
},
|
|
},
|
|
],
|
|
},
|
|
eslint: {
|
|
ignorePatterns: [
|
|
'dist',
|
|
'node_modules',
|
|
'public',
|
|
'extension',
|
|
'extension-firefox',
|
|
],
|
|
},
|
|
})
|