You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
23 lines
423 B
23 lines
423 B
import antfu from "@antfu/eslint-config"
|
|
|
|
export default antfu({
|
|
ignores: [
|
|
"dist",
|
|
"docs",
|
|
],
|
|
typescript: true,
|
|
formatters: true,
|
|
yaml: false,
|
|
type: "lib",
|
|
stylistic: {
|
|
indent: 4,
|
|
quotes: "double",
|
|
},
|
|
vue: {
|
|
sfcBlocks: true,
|
|
vueVersion: 2,
|
|
},
|
|
rules: {
|
|
"node/prefer-global/process": "off",
|
|
},
|
|
})
|
|
|