mirror of
https://github.com/nonebot/nonebot2.git
synced 2024-11-24 00:55:07 +08:00
bbd13c04cc
Co-authored-by: pre-commit-ci[bot] <66853113+pre-commit-ci[bot]@users.noreply.github.com>
57 lines
1.6 KiB
JSON
57 lines
1.6 KiB
JSON
{
|
|
"name": "Default Linux Universal",
|
|
"image": "mcr.microsoft.com/devcontainers/universal:2-linux",
|
|
"features": {
|
|
"ghcr.io/devcontainers-contrib/features/poetry:2": {}
|
|
},
|
|
"postCreateCommand": "./scripts/setup-envs.sh",
|
|
"customizations": {
|
|
"vscode": {
|
|
"settings": {
|
|
"python.analysis.diagnosticMode": "workspace",
|
|
"python.analysis.typeCheckingMode": "basic",
|
|
"ruff.organizeImports": false,
|
|
"[python]": {
|
|
"editor.defaultFormatter": "ms-python.black-formatter",
|
|
"editor.codeActionsOnSave": {
|
|
"source.fixAll.ruff": true,
|
|
"source.organizeImports": true
|
|
}
|
|
},
|
|
"[javascript]": {
|
|
"editor.defaultFormatter": "esbenp.prettier-vscode"
|
|
},
|
|
"[html]": {
|
|
"editor.defaultFormatter": "esbenp.prettier-vscode"
|
|
},
|
|
"[typescript]": {
|
|
"editor.defaultFormatter": "esbenp.prettier-vscode"
|
|
},
|
|
"[javascriptreact]": {
|
|
"editor.defaultFormatter": "esbenp.prettier-vscode"
|
|
},
|
|
"[typescriptreact]": {
|
|
"editor.defaultFormatter": "esbenp.prettier-vscode"
|
|
},
|
|
"files.exclude": {
|
|
"**/__pycache__": true
|
|
},
|
|
"files.watcherExclude": {
|
|
"**/target/**": true,
|
|
"**/__pycache__": true
|
|
}
|
|
},
|
|
"extensions": [
|
|
"ms-python.python",
|
|
"ms-python.vscode-pylance",
|
|
"ms-python.isort",
|
|
"ms-python.black-formatter",
|
|
"charliermarsh.ruff",
|
|
"EditorConfig.EditorConfig",
|
|
"esbenp.prettier-vscode",
|
|
"bradlc.vscode-tailwindcss"
|
|
]
|
|
}
|
|
}
|
|
}
|