webtools

Unnamed repository; edit this file 'description' to name the repository.
Log | Files | Refs | README | LICENSE

biome.json (628B)


      1 {
      2   "$schema": "https://biomejs.dev/schemas/2.2.0/schema.json",
      3   "vcs": {
      4     "enabled": true,
      5     "clientKind": "git",
      6     "useIgnoreFile": true
      7   },
      8   "files": {
      9     "ignoreUnknown": true,
     10     "includes": ["**", "!node_modules", "!.next", "!dist", "!build"]
     11   },
     12   "formatter": {
     13     "enabled": true,
     14     "indentStyle": "space",
     15     "indentWidth": 2
     16   },
     17   "linter": {
     18     "enabled": true,
     19     "rules": {
     20       "recommended": true
     21     },
     22     "domains": {
     23       "next": "recommended",
     24       "react": "recommended"
     25     }
     26   },
     27   "assist": {
     28     "actions": {
     29       "source": {
     30         "organizeImports": "on"
     31       }
     32     }
     33   }
     34 }