Files
nextjs-fetch-data-example/biome.json
S.Gromov 7c0f597840 chore: обновить инфраструктуру Mantine и шаблоны
- добавлен алиас infra и обновлены импорты Mantine
- настроены тема, цветовая схема и CSS-переменные Mantine
- добавлен переключатель цветовой схемы на главный экран
- обновлены шаблоны бизнес- и infra-модулей под фабрики
- добавлена команда генерации Petstore API и исключён generated-код из Biome
- обновлены JSDoc-комментарии React-компонентов
2026-05-07 22:13:26 +03:00

55 lines
977 B
JSON

{
"$schema": "https://biomejs.dev/schemas/2.2.0/schema.json",
"vcs": {
"enabled": true,
"clientKind": "git",
"useIgnoreFile": true
},
"files": {
"ignoreUnknown": true,
"includes": [
"**",
"!node_modules",
"!.next",
"!dist",
"!build",
"!.templates",
"!src/infrastructure/**/generated"
]
},
"formatter": {
"enabled": true,
"indentStyle": "space",
"indentWidth": 2
},
"javascript": {
"formatter": {
"quoteStyle": "single",
"jsxQuoteStyle": "double"
}
},
"linter": {
"enabled": true,
"rules": {
"recommended": true,
"suspicious": {
"noUnknownAtRules": "off"
},
"correctness": {
"noUnknownMediaFeatureName": "off"
}
},
"domains": {
"next": "recommended",
"react": "recommended"
}
},
"assist": {
"actions": {
"source": {
"organizeImports": "on"
}
}
}
}