Oxlint ignore twenty-version constant (#20350)

# Introduction
We could handle that by installing prettier on the package.json root and
running it over the twenty versions files inside the ci.
But to be honest it seems redundant, and would bloat the ci in the end.
Lets just not care about lint in these codegen files

Related https://github.com/twentyhq/twenty/pull/20345
This commit is contained in:
Paul Rastoin
2026-05-07 14:01:55 +02:00
committed by GitHub
parent f720186122
commit 1179357bc7
+4 -1
View File
@@ -14,7 +14,10 @@
"src/utils/email-providers.ts",
"src/engine/core-modules/i18n/locales/generated/**",
"src/engine/core-modules/logic-function/logic-function-resource/constants/seed-project/src/index.ts",
"src/engine/metadata-modules/front-component/constants/seed-project/**"
"src/engine/metadata-modules/front-component/constants/seed-project/**",
"src/engine/core-modules/upgrade/constants/twenty-current-version.constant.ts",
"src/engine/core-modules/upgrade/constants/twenty-previous-versions.constant.ts",
"src/engine/core-modules/upgrade/constants/twenty-next-versions.constant.ts"
],
"rules": {
"func-style": ["error", "declaration", { "allowArrowFunctions": true }],