aboutsummaryrefslogtreecommitdiff
path: root/.vscode
diff options
context:
space:
mode:
authortoasted-nutbread <toasted-nutbread@users.noreply.github.com>2023-11-27 12:48:14 -0500
committertoasted-nutbread <toasted-nutbread@users.noreply.github.com>2023-11-27 12:48:14 -0500
commit4da4827bcbcdd1ef163f635d9b29416ff272b0bb (patch)
treea8a0f1a8befdb78a554e1be91f2c6059ca3ad5f9 /.vscode
parentfd6bba8a2a869eaf2b2c1fa49001f933fce3c618 (diff)
Add JSDoc type annotations to project (rebased)
Diffstat (limited to '.vscode')
-rw-r--r--.vscode/extensions.json7
-rw-r--r--.vscode/settings.json12
2 files changed, 18 insertions, 1 deletions
diff --git a/.vscode/extensions.json b/.vscode/extensions.json
new file mode 100644
index 00000000..a5e24321
--- /dev/null
+++ b/.vscode/extensions.json
@@ -0,0 +1,7 @@
+{
+ "recommendations": [
+ "dbaeumer.vscode-eslint",
+ "html-validate.vscode-html-validate",
+ "stylelint.vscode-stylelint"
+ ]
+} \ No newline at end of file
diff --git a/.vscode/settings.json b/.vscode/settings.json
index 6dea7915..ecfe13c5 100644
--- a/.vscode/settings.json
+++ b/.vscode/settings.json
@@ -1,11 +1,21 @@
{
"markdown.extension.toc.levels": "1..3",
"editor.codeActionsOnSave": {
- "source.addMissingImports": true,
+ "source.addMissingImports": false,
"source.organizeImports": true,
"source.fixAll.eslint": true,
},
"eslint.format.enable": true,
"javascript.format.insertSpaceAfterOpeningAndBeforeClosingNonemptyBraces": false,
"javascript.preferences.importModuleSpecifierEnding": "js",
+ "editor.tabSize": 4,
+ "editor.insertSpaces": true,
+ "eslint.validate": [
+ "javascript",
+ "typescript"
+ ],
+ "files.eol": "\n",
+ "html-validate.validate": [
+ "html"
+ ]
}