Files
zitadel/.eslintrc.cjs

11 lines
225 B
JavaScript
Raw Normal View History

2023-04-03 11:45:27 +02:00
module.exports = {
root: true,
2025-01-03 13:03:56 +01:00
// This tells ESLint to load the config from the package `@zitadel/eslint-config`
2025-01-03 13:26:19 +01:00
extends: ["@zitadel/eslint-config"],
2023-04-03 11:45:27 +02:00
settings: {
next: {
rootDir: ["apps/*/"],
},
},
};