|
| 1 | +{ |
| 2 | + "$schema": "https://biomejs.dev/schemas/1.9.4/schema.json", |
| 3 | + "formatter": { |
| 4 | + "enabled": true, |
| 5 | + "useEditorconfig": true, |
| 6 | + "formatWithErrors": false, |
| 7 | + "indentStyle": "space", |
| 8 | + "indentWidth": 4, |
| 9 | + "lineEnding": "lf", |
| 10 | + "lineWidth": 120, |
| 11 | + "attributePosition": "auto", |
| 12 | + "bracketSpacing": true, |
| 13 | + "ignore": [ |
| 14 | + "../element-web", |
| 15 | + "./build/", |
| 16 | + "./docker/", |
| 17 | + "./dist/**", |
| 18 | + "./.hak/**", |
| 19 | + "./dockerbuild/", |
| 20 | + "./lib/", |
| 21 | + "./node_modules/", |
| 22 | + "./packages.elememt.io/", |
| 23 | + "./webapp", |
| 24 | + "./src/i18n/strings", |
| 25 | + "./CHANGELOG.md", |
| 26 | + "./package-lock.json", |
| 27 | + "./yarn.lock", |
| 28 | + "./playwright/html-report", |
| 29 | + "./playwright/test-results", |
| 30 | + "**/.idea", |
| 31 | + "**/.vscode", |
| 32 | + "**/.vscode/", |
| 33 | + "**/.tmp", |
| 34 | + "**/.env", |
| 35 | + "./coverage", |
| 36 | + "./.npmrc", |
| 37 | + "./*.log" |
| 38 | + ] |
| 39 | + }, |
| 40 | + "organizeImports": { "enabled": false }, |
| 41 | + "linter": { |
| 42 | + "enabled": false, |
| 43 | + "rules": { |
| 44 | + "recommended": false, |
| 45 | + "complexity": { |
| 46 | + "noExtraBooleanCast": "error", |
| 47 | + "noMultipleSpacesInRegularExpressionLiterals": "error", |
| 48 | + "noUselessCatch": "off", |
| 49 | + "noWith": "error" |
| 50 | + }, |
| 51 | + "correctness": { |
| 52 | + "noConstAssign": "error", |
| 53 | + "noConstantCondition": "error", |
| 54 | + "noEmptyCharacterClassInRegex": "error", |
| 55 | + "noEmptyPattern": "error", |
| 56 | + "noGlobalObjectCalls": "error", |
| 57 | + "noInnerDeclarations": "error", |
| 58 | + "noInvalidConstructorSuper": "error", |
| 59 | + "noNewSymbol": "error", |
| 60 | + "noNonoctalDecimalEscape": "error", |
| 61 | + "noPrecisionLoss": "error", |
| 62 | + "noSelfAssign": "error", |
| 63 | + "noSetterReturn": "error", |
| 64 | + "noSwitchDeclarations": "error", |
| 65 | + "noUndeclaredVariables": "error", |
| 66 | + "noUnreachable": "error", |
| 67 | + "noUnreachableSuper": "error", |
| 68 | + "noUnsafeFinally": "error", |
| 69 | + "noUnsafeOptionalChaining": "error", |
| 70 | + "noUnusedLabels": "error", |
| 71 | + "noUnusedVariables": "error", |
| 72 | + "useArrayLiterals": "error", |
| 73 | + "useIsNan": "error", |
| 74 | + "useValidForDirection": "error", |
| 75 | + "useYield": "error" |
| 76 | + }, |
| 77 | + "style": { |
| 78 | + "noArguments": "error", |
| 79 | + "noVar": "error", |
| 80 | + "useBlockStatements": "error", |
| 81 | + "useConsistentBuiltinInstantiation": "error", |
| 82 | + "useConst": "error", |
| 83 | + "useNodejsImportProtocol": "error", |
| 84 | + "useSingleVarDeclarator": "error", |
| 85 | + "useThrowOnlyError": "error" |
| 86 | + }, |
| 87 | + "suspicious": { |
| 88 | + "noAssignInExpressions": "error", |
| 89 | + "noAsyncPromiseExecutor": "off", |
| 90 | + "noCatchAssign": "error", |
| 91 | + "noClassAssign": "error", |
| 92 | + "noCompareNegZero": "error", |
| 93 | + "noConsole": "off", |
| 94 | + "noControlCharactersInRegex": "error", |
| 95 | + "noDebugger": "error", |
| 96 | + "noDuplicateCase": "error", |
| 97 | + "noDuplicateClassMembers": "error", |
| 98 | + "noDuplicateObjectKeys": "error", |
| 99 | + "noDuplicateParameters": "error", |
| 100 | + "noEmptyBlockStatements": "error", |
| 101 | + "noFallthroughSwitchClause": "error", |
| 102 | + "noFunctionAssign": "error", |
| 103 | + "noGlobalAssign": "error", |
| 104 | + "noImportAssign": "error", |
| 105 | + "noMisleadingCharacterClass": "error", |
| 106 | + "noPrototypeBuiltins": "off", |
| 107 | + "noRedeclare": "error", |
| 108 | + "noShadowRestrictedNames": "error", |
| 109 | + "noSparseArray": "error", |
| 110 | + "noUnsafeNegation": "error", |
| 111 | + "useGetterReturn": "error", |
| 112 | + "useIsArray": "error", |
| 113 | + "useValidTypeof": "error" |
| 114 | + } |
| 115 | + } |
| 116 | + }, |
| 117 | + "javascript": { |
| 118 | + "formatter": { |
| 119 | + "jsxQuoteStyle": "double", |
| 120 | + "quoteProperties": "asNeeded", |
| 121 | + "trailingCommas": "all", |
| 122 | + "semicolons": "always", |
| 123 | + "arrowParentheses": "always", |
| 124 | + "bracketSameLine": false, |
| 125 | + "quoteStyle": "double", |
| 126 | + "attributePosition": "auto", |
| 127 | + "bracketSpacing": true |
| 128 | + } |
| 129 | + }, |
| 130 | + "overrides": [ |
| 131 | + { |
| 132 | + "include": ["src/**/*.ts"], |
| 133 | + "linter": { |
| 134 | + "rules": { |
| 135 | + "style": { "noNonNullAssertion": "off" }, |
| 136 | + "suspicious": { "noExplicitAny": "off" } |
| 137 | + } |
| 138 | + } |
| 139 | + }, |
| 140 | + { |
| 141 | + "include": ["hak/**/*.ts"], |
| 142 | + "linter": { |
| 143 | + "rules": { |
| 144 | + "style": { "noNonNullAssertion": "off" }, |
| 145 | + "suspicious": { "noExplicitAny": "off" } |
| 146 | + } |
| 147 | + } |
| 148 | + }, |
| 149 | + { |
| 150 | + "include": ["scripts/**/*.ts"], |
| 151 | + "linter": { |
| 152 | + "rules": { |
| 153 | + "style": { "noNonNullAssertion": "off" }, |
| 154 | + "suspicious": { "noExplicitAny": "off" } |
| 155 | + } |
| 156 | + } |
| 157 | + }, |
| 158 | + { |
| 159 | + "include": ["playwright/**/*.ts"], |
| 160 | + "linter": { |
| 161 | + "rules": { |
| 162 | + "style": { "noNonNullAssertion": "off" }, |
| 163 | + "suspicious": { "noExplicitAny": "off" } |
| 164 | + } |
| 165 | + } |
| 166 | + }, |
| 167 | + { |
| 168 | + "include": ["src/**/*.ts"], |
| 169 | + "linter": { |
| 170 | + "rules": { |
| 171 | + "style": { "noNonNullAssertion": "off" }, |
| 172 | + "suspicious": { "noExplicitAny": "off" } |
| 173 | + } |
| 174 | + } |
| 175 | + }, |
| 176 | + { |
| 177 | + "include": ["hak/**/*.ts"], |
| 178 | + "linter": { |
| 179 | + "rules": { |
| 180 | + "style": { "noNonNullAssertion": "off" }, |
| 181 | + "suspicious": { "noExplicitAny": "off" } |
| 182 | + } |
| 183 | + } |
| 184 | + }, |
| 185 | + { |
| 186 | + "include": ["scripts/**/*.ts"], |
| 187 | + "linter": { |
| 188 | + "rules": { |
| 189 | + "style": { "noNonNullAssertion": "off" }, |
| 190 | + "suspicious": { "noExplicitAny": "off" } |
| 191 | + } |
| 192 | + } |
| 193 | + }, |
| 194 | + { |
| 195 | + "include": ["playwright/**/*.ts"], |
| 196 | + "linter": { |
| 197 | + "rules": { |
| 198 | + "style": { "noNonNullAssertion": "off" }, |
| 199 | + "suspicious": { "noExplicitAny": "off" } |
| 200 | + } |
| 201 | + } |
| 202 | + } |
| 203 | + ] |
| 204 | +} |
0 commit comments