|
4 | 4 | "files": { |
5 | 5 | "ignoreUnknown": true, |
6 | 6 | "includes": [ |
7 | | - "**", "!**/.next", "!**/.open-next", "!**/.wrangler", "!**/out", "!**/dist", "!**/build", |
8 | | - "!**/node_modules", "!**/.astro", "!**/vite-env.d.ts", "!**/cloudflare-env.d.ts", |
9 | | - "!**/pnpm-lock.yaml", "!**/package-lock.json", "!**/tsconfig.tsbuildinfo", "!**/drizzle/**" |
| 7 | + "**", |
| 8 | + "!**/.next", |
| 9 | + "!**/.open-next", |
| 10 | + "!**/.wrangler", |
| 11 | + "!**/out", |
| 12 | + "!**/dist", |
| 13 | + "!**/build", |
| 14 | + "!**/node_modules", |
| 15 | + "!**/.astro", |
| 16 | + "!**/vite-env.d.ts", |
| 17 | + "!**/cloudflare-env.d.ts", |
| 18 | + "!**/pnpm-lock.yaml", |
| 19 | + "!**/package-lock.json", |
| 20 | + "!**/tsconfig.tsbuildinfo", |
| 21 | + "!**/drizzle", |
| 22 | + "!**/*.css", |
| 23 | + "!**/design.html" |
10 | 24 | ] |
11 | 25 | }, |
12 | | - "formatter": { "enabled": true, "indentStyle": "space", "indentWidth": 2, "lineWidth": 100, "lineEnding": "lf" }, |
13 | | - "javascript": { "formatter": { "quoteStyle": "single", "semicolons": "always", "trailingCommas": "es5", "jsxQuoteStyle": "double" } }, |
14 | | - "linter": { "enabled": true, "rules": { "recommended": true } }, |
| 26 | + "formatter": { |
| 27 | + "enabled": true, |
| 28 | + "indentStyle": "space", |
| 29 | + "indentWidth": 2, |
| 30 | + "lineWidth": 100, |
| 31 | + "lineEnding": "lf" |
| 32 | + }, |
| 33 | + "javascript": { |
| 34 | + "formatter": { |
| 35 | + "quoteStyle": "single", |
| 36 | + "semicolons": "always", |
| 37 | + "trailingCommas": "es5", |
| 38 | + "jsxQuoteStyle": "double" |
| 39 | + } |
| 40 | + }, |
| 41 | + "linter": { |
| 42 | + "enabled": true, |
| 43 | + "rules": { |
| 44 | + "recommended": true, |
| 45 | + "a11y": { |
| 46 | + "noSvgWithoutTitle": "off", |
| 47 | + "useButtonType": "off", |
| 48 | + "useValidAnchor": "off", |
| 49 | + "noLabelWithoutControl": "off", |
| 50 | + "useAriaPropsSupportedByRole": "off", |
| 51 | + "noStaticElementInteractions": "off" |
| 52 | + }, |
| 53 | + "suspicious": { |
| 54 | + "noArrayIndexKey": "off", |
| 55 | + "noExplicitAny": "off", |
| 56 | + "useIterableCallbackReturn": "off", |
| 57 | + "noDocumentCookie": "off" |
| 58 | + }, |
| 59 | + "style": { |
| 60 | + "noNonNullAssertion": "off", |
| 61 | + "useNodejsImportProtocol": "off" |
| 62 | + }, |
| 63 | + "correctness": { |
| 64 | + "useExhaustiveDependencies": "off" |
| 65 | + } |
| 66 | + } |
| 67 | + }, |
15 | 68 | "assist": { "enabled": true, "actions": { "source": { "organizeImports": "off" } } } |
16 | 69 | } |
0 commit comments