25 lines
401 B
TypeScript
25 lines
401 B
TypeScript
// https://nuxt.com/docs/api/configuration/nuxt-config
|
|
export default defineNuxtConfig({
|
|
|
|
modules: [
|
|
"@nuxt/eslint",
|
|
],
|
|
|
|
devtools: { enabled: true },
|
|
|
|
compatibilityDate: "2026-01-01",
|
|
|
|
eslint: {
|
|
config: {
|
|
stylistic: {
|
|
arrowParens: true,
|
|
commaDangle: "always-multiline",
|
|
indent: 2,
|
|
quotes: "double",
|
|
semi: true,
|
|
},
|
|
},
|
|
},
|
|
|
|
});
|