Skip to content

Commit

Permalink
🚨 make prettier happy
Browse files Browse the repository at this point in the history
  • Loading branch information
StarHeartHunt committed Jan 23, 2024
1 parent 1730c8c commit b722d98
Show file tree
Hide file tree
Showing 2 changed files with 19 additions and 19 deletions.
30 changes: 15 additions & 15 deletions .devcontainer/devcontainer.json
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@
"name": "Default Linux Universal",
"image": "mcr.microsoft.com/devcontainers/universal:2-linux",
"features": {
"ghcr.io/devcontainers-contrib/features/poetry:2": {}
"ghcr.io/devcontainers-contrib/features/poetry:2": {},
},
"postCreateCommand": "poetry config virtualenvs.in-project true && poetry install -E all && poetry run pre-commit install && yarn install",
"customizations": {
Expand All @@ -13,31 +13,31 @@
"[python]": {
"editor.defaultFormatter": "ms-python.black-formatter",
"editor.codeActionsOnSave": {
"source.organizeImports": true
}
"source.organizeImports": true,
},
},
"[javascript]": {
"editor.defaultFormatter": "esbenp.prettier-vscode"
"editor.defaultFormatter": "esbenp.prettier-vscode",
},
"[html]": {
"editor.defaultFormatter": "esbenp.prettier-vscode"
"editor.defaultFormatter": "esbenp.prettier-vscode",
},
"[typescript]": {
"editor.defaultFormatter": "esbenp.prettier-vscode"
"editor.defaultFormatter": "esbenp.prettier-vscode",
},
"[javascriptreact]": {
"editor.defaultFormatter": "esbenp.prettier-vscode"
"editor.defaultFormatter": "esbenp.prettier-vscode",
},
"[typescriptreact]": {
"editor.defaultFormatter": "esbenp.prettier-vscode"
"editor.defaultFormatter": "esbenp.prettier-vscode",
},
"files.exclude": {
"**/__pycache__": true
"**/__pycache__": true,
},
"files.watcherExclude": {
"**/target/**": true,
"**/__pycache__": true
}
"**/__pycache__": true,
},
},
"extensions": [
"ms-python.python",
Expand All @@ -46,8 +46,8 @@
"ms-python.black-formatter",
"EditorConfig.EditorConfig",
"esbenp.prettier-vscode",
"bradlc.vscode-tailwindcss"
]
}
}
"bradlc.vscode-tailwindcss",
],
},
},
}
8 changes: 4 additions & 4 deletions website/tsconfig.json
Original file line number Diff line number Diff line change
Expand Up @@ -6,11 +6,11 @@
"types": [
"node",
"@docusaurus/module-type-aliases",
"@nullbot/docusaurus-theme-nonepress"
"@nullbot/docusaurus-theme-nonepress",
],
"paths": {
"@/*": ["./src/*"],
"@theme/*": ["./src/theme/*"]
"@theme/*": ["./src/theme/*"],
},

/* Strict Type-Checking Options */
Expand All @@ -31,6 +31,6 @@

/* Use tslib */
"importHelpers": true,
"noEmitHelpers": true
}
"noEmitHelpers": true,
},
}

0 comments on commit b722d98

Please sign in to comment.