create-coliapp
Version:
Create projects like colidev 🚀. Inspired by 'create-appncy' by @goncy
35 lines (34 loc) • 548 B
JSON
{
"$schema": "https://biomejs.dev/schemas/1.9.4/schema.json",
"vcs": {
"enabled": false,
"clientKind": "git",
"useIgnoreFile": false
},
"files": {
"ignoreUnknown": false,
"ignore": ["./.next"]
},
"formatter": {
"enabled": true,
"useEditorconfig": true
},
"organizeImports": {
"enabled": true
},
"linter": {
"enabled": true,
"rules": {
"recommended": true,
"correctness": {
"noEmptyPattern": "warn"
}
}
},
"javascript": {
"formatter": {
"semicolons": "always",
"trailingCommas": "all"
}
}
}