|
1 | 1 | {
|
2 | 2 | "$schema": "./node_modules/@biomejs/biome/configuration_schema.json",
|
3 |
| - "organizeImports": { |
4 |
| - "enabled": true |
5 |
| - }, |
6 |
| - "formatter": { |
7 |
| - "useEditorconfig": true |
8 |
| - }, |
9 |
| - "overrides": [ |
10 |
| - { |
11 |
| - "include": [".vscode/**", "components.d.ts"], |
12 |
| - "json": { |
13 |
| - "parser": { |
14 |
| - "allowComments": true, |
15 |
| - "allowTrailingCommas": true |
16 |
| - } |
17 |
| - } |
18 |
| - } |
19 |
| - ], |
20 |
| - "javascript": { |
21 |
| - "formatter": { |
22 |
| - "jsxQuoteStyle": "double", |
23 |
| - "quoteProperties": "asNeeded", |
24 |
| - "trailingCommas": "all", |
25 |
| - "semicolons": "asNeeded", |
26 |
| - "arrowParentheses": "always", |
27 |
| - "bracketSpacing": true, |
28 |
| - "bracketSameLine": false, |
29 |
| - "quoteStyle": "single", |
30 |
| - "attributePosition": "auto", |
31 |
| - "indentStyle": "space", |
32 |
| - "indentWidth": 2, |
33 |
| - "lineEnding": "lf", |
34 |
| - "lineWidth": 120 |
35 |
| - } |
36 |
| - }, |
37 |
| - "json": { |
38 |
| - "parser": { |
39 |
| - "allowComments": true |
40 |
| - }, |
41 |
| - "formatter": { |
42 |
| - "indentStyle": "space", |
43 |
| - "indentWidth": 2, |
44 |
| - "lineEnding": "lf" |
45 |
| - } |
46 |
| - }, |
47 |
| - "linter": { |
48 |
| - "enabled": true, |
49 |
| - "rules": { |
50 |
| - "recommended": true, |
51 |
| - "style": { |
52 |
| - "noParameterAssign": "off", |
53 |
| - "noUnusedTemplateLiteral": "off", |
54 |
| - "useBlockStatements": "off" |
55 |
| - }, |
56 |
| - "complexity": { |
57 |
| - "noForEach": "off", |
58 |
| - "noStaticOnlyClass": "off", |
59 |
| - "noThisInStatic": "off", |
60 |
| - "noBannedTypes": "off" |
61 |
| - }, |
62 |
| - "suspicious": { |
63 |
| - "noExplicitAny": "off", |
64 |
| - "noShadowRestrictedNames": "off", |
65 |
| - "noImplicitAnyLet": "off" |
66 |
| - } |
67 |
| - } |
68 |
| - }, |
69 |
| - "files": { |
70 |
| - "ignore": [ |
71 |
| - "**/.vite-ssg-temp/*", |
72 |
| - "components.d.ts", |
73 |
| - "database/migrations/*", |
74 |
| - "storage/framework/types/*", |
75 |
| - "storage/framework/cache/*", |
76 |
| - "storage/framework/core/vite-config/src/*.ts.timestamp*", |
77 |
| - "storage/framework/core/orm/src/generated/*", |
78 |
| - "storage/framework/core/components/notification/packages/Toast.vue" |
79 |
| - ] |
80 |
| - }, |
81 |
| - "vcs": { |
82 |
| - "enabled": true, |
83 |
| - "clientKind": "git", |
84 |
| - "useIgnoreFile": true, |
85 |
| - "defaultBranch": "main" |
86 |
| - }, |
87 |
| - "extends": ["./storage/framework/.biomelintrc-auto-import.json"] |
| 3 | + "extends": [ |
| 4 | + "./node_modules/@stacksjs/biome-config/schema.json", |
| 5 | + "./storage/framework/.biomelintrc-auto-import.json" |
| 6 | + ] |
88 | 7 | }
|
0 commit comments