feat(docs): reorganize imports and improve formatting for readability
Some checks failed
Lint / lint (pull_request) Has been cancelled
Lint / lint (push) Successful in 9m36s

Streamline import orders in MDX components and layout files. Adjust text formatting in the homepage and configuration files for consistent structure and enhanced clarity. Add new accessibility-focused linting rules in `biome.json`.
This commit is contained in:
Mathis HERRIOT
2026-01-14 18:04:31 +01:00
parent 75ac95cadb
commit 24eb99093c
5 changed files with 82 additions and 28 deletions

View File

@@ -17,7 +17,15 @@
"linter": {
"enabled": true,
"rules": {
"recommended": true
"recommended": true,
"a11y": {
"useAriaPropsForRole": "warn",
"useSemanticElements": "warn",
"useFocusableInteractive": "warn"
},
"suspicious": {
"noUnknownAtRules": "off"
}
},
"domains": {
"next": "recommended",