Improve VS Code integration

This commit is contained in:
Andras Schmelczer 2022-09-21 23:14:44 +02:00
parent 84e2a52640
commit 593e75a5d3
No known key found for this signature in database
GPG key ID: 0EA1BC97D0AB076E
2 changed files with 22 additions and 1 deletions

View file

@ -4,6 +4,7 @@
"astra",
"colour",
"colours",
"datetime",
"decla",
"EEPROM",
"favicons",
@ -14,9 +15,11 @@
"linkedin",
"mesmerising",
"mixins",
"noopener",
"optimisations",
"optimised",
"organiser",
"playsinline",
"realised",
"schmelczer",
"serialisation",
@ -30,5 +33,7 @@
],
"files.exclude": {
"node_modules": true
}
},
"editor.rulers": [120],
"editor.wordWrap": "on"
}

16
.vscode/tasks.json vendored Normal file
View file

@ -0,0 +1,16 @@
{
"version": "2.0.0",
"tasks": [
{
"label": "Format and lint",
"type": "shell",
"command": "npm run lint",
"group": "test",
"presentation": {
"reveal": "always",
"showReuseMessage": false,
"panel": "shared"
}
}
]
}