diff --git a/.vscode/settings.json b/.vscode/settings.json index 7b4bff2..53a5fdc 100644 --- a/.vscode/settings.json +++ b/.vscode/settings.json @@ -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" } diff --git a/.vscode/tasks.json b/.vscode/tasks.json new file mode 100644 index 0000000..49d45f9 --- /dev/null +++ b/.vscode/tasks.json @@ -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" + } + } + ] +}