2025-08-28 17:11:59 +02:00
|
|
|
{
|
2026-03-24 15:29:18 +01:00
|
|
|
"$schema": "https://biomejs.dev/schemas/2.4.8/schema.json",
|
2025-08-29 16:18:32 +02:00
|
|
|
"assist": {
|
|
|
|
|
"actions": {
|
|
|
|
|
"source": {
|
|
|
|
|
"organizeImports": "on",
|
2025-09-02 19:12:17 +02:00
|
|
|
"useSortedAttributes": "on"
|
2025-08-29 16:18:32 +02:00
|
|
|
}
|
|
|
|
|
},
|
|
|
|
|
"enabled": true
|
2025-08-28 17:11:59 +02:00
|
|
|
},
|
|
|
|
|
"files": {
|
2025-08-29 16:18:32 +02:00
|
|
|
"ignoreUnknown": true,
|
2025-08-28 17:11:59 +02:00
|
|
|
"includes": [
|
|
|
|
|
"**",
|
|
|
|
|
"!node_modules",
|
|
|
|
|
"!.git",
|
|
|
|
|
"!out",
|
|
|
|
|
"!public",
|
|
|
|
|
"!.github",
|
|
|
|
|
"!.vscode",
|
|
|
|
|
"!certificates",
|
|
|
|
|
"!.next",
|
|
|
|
|
"!.env",
|
|
|
|
|
"!.gitignore",
|
|
|
|
|
"!check-env-vars.js",
|
|
|
|
|
"!headers",
|
|
|
|
|
"!schemas",
|
|
|
|
|
"!kyselyRules",
|
|
|
|
|
"!prettier.config.cjs",
|
|
|
|
|
"!postcss.config.cjs",
|
|
|
|
|
"!.dockerignore",
|
|
|
|
|
"!Dockerfile",
|
|
|
|
|
"!*compose.yml",
|
|
|
|
|
"!.kanelrc.js",
|
|
|
|
|
"!TODO",
|
2025-08-28 18:27:07 +02:00
|
|
|
"!src/i18n/comuni.ts",
|
|
|
|
|
"!src/i18n/nazioni.ts",
|
|
|
|
|
"!src/i18n/provincie.ts",
|
2025-10-28 11:55:01 +01:00
|
|
|
"!src/styles/globals.css",
|
|
|
|
|
"!!**/node_modules",
|
|
|
|
|
"!!**/dist",
|
|
|
|
|
"!!**/build",
|
|
|
|
|
"!!**/.next",
|
|
|
|
|
"!!**/.git",
|
|
|
|
|
"!!**/public",
|
|
|
|
|
"!!**/.github",
|
|
|
|
|
"!!**/.vscode",
|
|
|
|
|
"!!**/certificates",
|
|
|
|
|
"!!**/headers",
|
2026-03-25 11:30:14 +01:00
|
|
|
"!!**/schemas",
|
|
|
|
|
"!fic_cities.json",
|
|
|
|
|
"!fic_nations.json",
|
|
|
|
|
"!gi_comuni_cap.json",
|
|
|
|
|
"!gi_nazioni.json"
|
2025-08-29 16:18:32 +02:00
|
|
|
]
|
2025-08-28 17:11:59 +02:00
|
|
|
},
|
|
|
|
|
"formatter": {
|
|
|
|
|
"enabled": true,
|
|
|
|
|
"indentStyle": "tab"
|
|
|
|
|
},
|
2025-08-29 16:18:32 +02:00
|
|
|
"javascript": {
|
|
|
|
|
"formatter": {
|
|
|
|
|
"quoteStyle": "double"
|
|
|
|
|
}
|
|
|
|
|
},
|
2025-10-28 11:55:01 +01:00
|
|
|
"css": {
|
|
|
|
|
"parser": {
|
|
|
|
|
"tailwindDirectives": true
|
|
|
|
|
}
|
|
|
|
|
},
|
2025-08-28 17:11:59 +02:00
|
|
|
"linter": {
|
|
|
|
|
"domains": {
|
|
|
|
|
"next": "recommended",
|
2026-02-18 10:20:15 +01:00
|
|
|
"project": "none",
|
2025-08-28 17:11:59 +02:00
|
|
|
"react": "recommended"
|
|
|
|
|
},
|
2025-08-29 16:18:32 +02:00
|
|
|
"enabled": true,
|
2025-08-28 17:11:59 +02:00
|
|
|
"rules": {
|
|
|
|
|
"a11y": {
|
2025-08-29 16:18:32 +02:00
|
|
|
"noAutofocus": "off",
|
2025-08-28 18:27:07 +02:00
|
|
|
"noNoninteractiveElementInteractions": "error",
|
2025-11-18 11:50:29 +01:00
|
|
|
"useSemanticElements": "off",
|
|
|
|
|
"useMediaCaption": "off"
|
2025-08-28 18:27:07 +02:00
|
|
|
},
|
|
|
|
|
"complexity": {
|
|
|
|
|
"noUselessFragments": "off"
|
2025-08-28 17:11:59 +02:00
|
|
|
},
|
|
|
|
|
"correctness": {
|
2025-09-01 16:48:03 +02:00
|
|
|
"noUndeclaredVariables": "on",
|
2025-08-28 18:27:07 +02:00
|
|
|
"useExhaustiveDependencies": "off",
|
2025-08-29 16:18:32 +02:00
|
|
|
"useHookAtTopLevel": "off",
|
2025-10-28 11:55:01 +01:00
|
|
|
"useParseIntRadix": "off",
|
|
|
|
|
"noChildrenProp": "error",
|
|
|
|
|
"noReactPropAssignments": "error"
|
2025-08-28 18:27:07 +02:00
|
|
|
},
|
2025-09-01 16:48:03 +02:00
|
|
|
"nursery": {
|
2025-10-10 16:18:43 +02:00
|
|
|
"useExhaustiveSwitchCases": "on",
|
|
|
|
|
"useSortedClasses": {
|
|
|
|
|
"level": "info",
|
|
|
|
|
"fix": "safe",
|
|
|
|
|
"options": {}
|
|
|
|
|
}
|
2025-09-01 16:48:03 +02:00
|
|
|
},
|
2025-08-28 18:27:07 +02:00
|
|
|
"performance": {
|
2025-09-01 16:48:03 +02:00
|
|
|
"noImgElement": "off",
|
|
|
|
|
"useGoogleFontPreconnect": "on"
|
2025-08-28 18:27:07 +02:00
|
|
|
},
|
2025-08-29 16:18:32 +02:00
|
|
|
"recommended": true,
|
2025-08-28 18:27:07 +02:00
|
|
|
"security": {
|
|
|
|
|
"noDangerouslySetInnerHtml": "off"
|
2025-08-29 16:18:32 +02:00
|
|
|
},
|
2025-09-01 16:48:03 +02:00
|
|
|
"style": {
|
|
|
|
|
"noUselessElse": "on",
|
|
|
|
|
"noYodaExpression": "on",
|
|
|
|
|
"useThrowNewError": "on",
|
|
|
|
|
"useThrowOnlyError": "on"
|
|
|
|
|
},
|
2025-08-29 16:18:32 +02:00
|
|
|
"suspicious": {
|
2025-10-28 11:55:01 +01:00
|
|
|
"noArrayIndexKey": "info",
|
2025-09-01 16:48:03 +02:00
|
|
|
"noDocumentImportInPage": "on",
|
|
|
|
|
"noHeadImportInDocument": "on",
|
2025-08-29 16:18:32 +02:00
|
|
|
"noUnknownAtRules": "off",
|
|
|
|
|
"useIterableCallbackReturn": "off"
|
2025-08-28 17:11:59 +02:00
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
},
|
2026-01-14 14:21:57 +01:00
|
|
|
"plugins": [
|
2026-02-17 12:36:37 +01:00
|
|
|
"biome_plugins/missing_select.grit",
|
|
|
|
|
"biome_plugins/missing_where.grit",
|
2026-03-05 10:28:31 +01:00
|
|
|
"biome_plugins/null.grit",
|
|
|
|
|
"biome_plugins/missing_returning.grit"
|
2026-01-14 14:21:57 +01:00
|
|
|
],
|
2025-08-29 16:18:32 +02:00
|
|
|
"vcs": {
|
|
|
|
|
"clientKind": "git",
|
2025-08-28 17:11:59 +02:00
|
|
|
"enabled": true,
|
2025-08-29 16:18:32 +02:00
|
|
|
"root": "../../",
|
|
|
|
|
"useIgnoreFile": false
|
2025-08-28 17:11:59 +02:00
|
|
|
}
|
2026-02-18 10:20:15 +01:00
|
|
|
}
|