wtetsu/mouse-dictionary

View on GitHub
biome.json

Summary

Maintainability
Test Coverage
{
  "organizeImports": {
    "enabled": true
  },
  "formatter": {
    "enabled": true,
    "indentStyle": "space",
    "lineWidth": 120
  },
  "linter": {
    "enabled": true,
    "rules": {
      "style": {
        "useTemplate": "off",
        "useSingleVarDeclarator": "off",
        "useSelfClosingElements": "off"
      },
      "correctness": {
        "useExhaustiveDependencies": "off"
      },
      "a11y": {
        "noLabelWithoutControl": "off",
        "useKeyWithClickEvents": "off",
        "useAltText": "off",
        "useValidAnchor": "off",
        "noAutofocus": "off"
      },
      "suspicious": {
        "noExplicitAny": "off",
        "noArrayIndexKey": "off",
        "noEmptyInterface": "off"
      },
      "complexity": {
        "useRegexLiterals": "off",
        "noForEach": "off"
      },
      "performance": {
        "noDelete": "off"
      }
    }
  }
}