eslint extend

This commit is contained in:
Max Peintner
2025-01-03 13:26:19 +01:00
parent f05a3868b7
commit 25d649e908
2 changed files with 2 additions and 2 deletions

View File

@@ -1,7 +1,7 @@
module.exports = { module.exports = {
root: true, root: true,
// This tells ESLint to load the config from the package `@zitadel/eslint-config` // This tells ESLint to load the config from the package `@zitadel/eslint-config`
extends: ["zitadel"], extends: ["@zitadel/eslint-config"],
settings: { settings: {
next: { next: {
rootDir: ["apps/*/"], rootDir: ["apps/*/"],

View File

@@ -1,4 +1,4 @@
module.exports = { module.exports = {
root: true, root: true,
extends: ["zitadel"], extends: ["@zitadel/eslint-config"],
}; };