generated from acdh-oeaw/template-app-nuxt
-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
1 parent
c377e61
commit d1a70ef
Showing
4 changed files
with
14,388 additions
and
10 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,27 @@ | ||
/** @typedef {import("typescript-eslint").Config} Config */ | ||
|
||
import baseConfig from "@acdh-oeaw/eslint-config"; | ||
import nuxtConfig from "@acdh-oeaw/eslint-config-nuxt"; | ||
import playwrightConfig from "@acdh-oeaw/eslint-config-playwright"; | ||
import tailwindcssConfig from "@acdh-oeaw/eslint-config-tailwindcss"; | ||
import vueConfig from "@acdh-oeaw/eslint-config-vue"; | ||
import gitignore from "eslint-config-flat-gitignore"; | ||
|
||
import { withNuxt } from "./.nuxt/eslint.config.mjs"; | ||
|
||
/** @type {Config} */ | ||
const config = [ | ||
gitignore(), | ||
...baseConfig, | ||
...vueConfig, | ||
...nuxtConfig, | ||
...tailwindcssConfig, | ||
...playwrightConfig, | ||
{ | ||
rules: { | ||
"vue/attributes-order": ["warn", { alphabetical: true }], | ||
}, | ||
}, | ||
]; | ||
|
||
export default withNuxt(/** @type {any} */ (config)); |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Oops, something went wrong.