| 123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990 |
- {
- "$schema": "https://biomejs.dev/schemas/1.9.4/schema.json",
- "organizeImports": {
- "enabled": false
- },
- "files": {
- "ignore": [
- "node_modules/**",
- "dist/**",
- "**/tsconfig*",
- "libs/editor/examples/**/*.json",
- "libs/editor/src/examples/**/annotations/1.json",
- "apps/labelstudio-e2e/**"
- ],
- "maxSize": 3670016
- },
- "vcs": {
- "enabled": true,
- "clientKind": "git",
- "useIgnoreFile": true,
- "defaultBranch": "develop"
- },
- "formatter": {
- "indentStyle": "space",
- "indentWidth": 2,
- "lineWidth": 120
- },
- "css": {
- "linter": {
- "enabled": false
- },
- "formatter": {
- "enabled": false
- }
- },
- "linter": {
- "enabled": true,
- "rules": {
- "recommended": true,
- "a11y": {
- "noAutofocus": "off",
- "useKeyWithClickEvents": "off",
- "noLabelWithoutControl": "off"
- },
- "suspicious": {
- "noExplicitAny": "off",
- "noAssignInExpressions": "off",
- "noGlobalIsNan": "off",
- "noArrayIndexKey": "off",
- "noAsyncPromiseExecutor": "off",
- "noConfusingVoidType": "off",
- "noImplicitAnyLet": "off",
- "noShadowRestrictedNames": "off",
- "useGetterReturn": "off"
- },
- "complexity": {
- "noForEach": "off",
- "useOptionalChain": "off",
- "noBannedTypes": "off",
- "noStaticOnlyClass": "off",
- "noUselessFragments": "off"
- },
- "correctness": {
- "useExhaustiveDependencies": "off",
- "noChildrenProp": "off",
- "useJsxKeyInIterable": "off",
- "noUnusedImports": {
- "level": "warn"
- },
- "noUnusedVariables": {
- "level": "warn"
- }
- },
- "performance": {
- "noAccumulatingSpread": "off",
- "noDelete": "off"
- },
- "style": {
- "noNonNullAssertion": "off",
- "useDefaultParameterLast": "off",
- "useNodejsImportProtocol": "off",
- "noParameterAssign": "off"
- },
- "nursery": {},
- "security": {
- "noDangerouslySetInnerHtml": "off"
- }
- }
- }
- }
|