/ biome.json
biome.json
 1  {
 2  	"$schema": "./node_modules/@biomejs/biome/configuration_schema.json",
 3  	"assist": {
 4  		"actions": {
 5  			"source": {
 6  				"organizeImports": "on"
 7  			}
 8  		}
 9  	},
10  	"css": {
11  		"parser": {
12  			"tailwindDirectives": true
13  		}
14  	},
15  	"overrides": [
16  		{
17  			"includes": ["**/*.svelte", "**/*.astro"],
18  			"linter": {
19  				"rules": {
20  					"style": {
21  						"useConst": "off",
22  						"useImportType": "off"
23  					},
24  					"correctness": {
25  						"noUnusedVariables": "off",
26  						"noUnusedImports": "off"
27  					}
28  				}
29  			}
30  		}
31  	]
32  }
33