Skip to content

Commit

Permalink
Merge pull request #79 from comboomPunkTsucht:dev
Browse files Browse the repository at this point in the history
.
  • Loading branch information
mcpeapsUnterstrichHD authored Sep 13, 2024
2 parents 5cf8ac2 + e00bc5f commit 8dac486
Showing 1 changed file with 13 additions and 8 deletions.
21 changes: 13 additions & 8 deletions biome.json
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
{
"$schema": "https://biomejs.dev/schemas/1.9.0/schema.json",
"vcs": {
"enabled": false,
"enabled": true,
"clientKind": "git",
"useIgnoreFile": false
},
Expand All @@ -20,7 +20,7 @@
"linter": {
"enabled": true,
"rules": {
"recommended": false,
"recommended": true,
"a11y": {
"noAriaUnsupportedElements": "warn",
"noBlankTarget": "off",
Expand All @@ -30,11 +30,11 @@
"useValidAriaValues": "warn"
},
"correctness": {
"noChildrenProp": "error",
"noChildrenProp": "warn",
"useExhaustiveDependencies": "warn",
"useHookAtTopLevel": "error",
"useJsxKeyInIterable": "error",
"noUnusedImports": "error"
"useHookAtTopLevel": "warn",
"useJsxKeyInIterable": "warn",
"noUnusedImports": "warn"
},
"nursery": {
"useSortedClasses": {
Expand All @@ -43,8 +43,13 @@
"options": {}
}
},
"security": { "noDangerouslySetInnerHtmlWithChildren": "error" },
"suspicious": { "noCommentText": "error", "noDuplicateJsxProps": "error" }
"security": {
"noDangerouslySetInnerHtmlWithChildren": "error"
},
"suspicious": {
"noCommentText": "error",
"noDuplicateJsxProps": "error"
}
}
},
"javascript": {
Expand Down

0 comments on commit 8dac486

Please sign in to comment.