Skip to content

Instantly share code, notes, and snippets.

@nullmastermind
Created September 14, 2025 13:51
Show Gist options
  • Select an option

  • Save nullmastermind/f725561ef77f736bdbcde1a391580937 to your computer and use it in GitHub Desktop.

Select an option

Save nullmastermind/f725561ef77f736bdbcde1a391580937 to your computer and use it in GitHub Desktop.
{
"$schema": "https://biomejs.dev/schemas/2.2.4/schema.json",
"vcs": {
"enabled": false,
"clientKind": "git",
"useIgnoreFile": false
},
"files": {
"ignoreUnknown": false,
"includes": [
"**",
"!**/dist",
"!**/build",
"!**/*.gen.ts",
"!**/vite.config.ts.timestamp-*.mjs",
"!**/src/codegen",
"!**/.quasar",
"!**/src/css/tailwind.css",
"!packages/app/quasar.config.ts"
]
},
"formatter": {
"enabled": true,
"indentStyle": "space"
},
"linter": {
"enabled": true,
"rules": {
"recommended": true,
"suspicious": {
"noExplicitAny": "off"
}
}
},
"javascript": {
"formatter": {
"quoteStyle": "single",
"indentWidth": 2,
"lineWidth": 100
}
},
"assist": {
"enabled": true,
"actions": {
"source": {
"organizeImports": "on"
}
}
},
"overrides": [
{
"includes": ["**/*.svelte", "**/*.astro", "**/*.vue"],
"linter": {
"rules": {
"style": {
"useConst": "off",
"useImportType": "off"
},
"correctness": {
"noUnusedVariables": "off",
"noUnusedImports": "off"
},
"suspicious": {
"noExplicitAny": "off"
}
}
}
}
]
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment