forked from repobuddy/visual-testing
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathbiome.jsonc
More file actions
33 lines (33 loc) · 671 Bytes
/
Copy pathbiome.jsonc
File metadata and controls
33 lines (33 loc) · 671 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
{
"$schema": "https://biomejs.dev/schemas/1.9.3/schema.json",
"extends": ["@repobuddy/biome/recommended"],
"vcs": {
"enabled": true,
"clientKind": "git",
"useIgnoreFile": true,
"defaultBranch": "main"
},
"files": {
"ignoreUnknown": false,
"ignore": ["node_modules/", ".vscode/*.txt", "**/esm", "*.code-workspace", "tailwind.css"]
},
"formatter": {
"enabled": true,
"indentStyle": "tab"
},
"linter": {
"rules": {
"a11y": {
"noSvgWithoutTitle": "off",
"useAltText": "off",
"useSemanticElements": "off"
},
"correctness": {
"useImportExtensions": "error"
},
"suspicious": {
"noArrayIndexKey": "off"
}
}
}
}