aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorNoah Loomans <noahloomans@gmail.com>2018-06-25 21:55:21 +0200
committerNoah Loomans <noahloomans@gmail.com>2018-06-25 21:55:21 +0200
commit9a2a7e1b55a4ae1f7b822217337d00020ef6349e (patch)
tree50ecdde1a8516d65d48aa69bdcd0d174e32a140b
parent5ba9c31d8ba6ead4aa1fbcc8ab52f2c54e1fcb32 (diff)
Improve .vscode
-rw-r--r--.vscode/extensions.json11
-rw-r--r--.vscode/settings.json20
2 files changed, 30 insertions, 1 deletions
diff --git a/.vscode/extensions.json b/.vscode/extensions.json
new file mode 100644
index 0000000..f571a48
--- /dev/null
+++ b/.vscode/extensions.json
@@ -0,0 +1,11 @@
+{
+ // See http://go.microsoft.com/fwlink/?LinkId=827846
+ // for the documentation about the extensions.json format
+ "recommendations": [
+ // Extension identifier format: ${publisher}.${name}. Example: vscode.csharp
+ "dbaeumer.vscode-eslint",
+ "streetsidesoftware.code-spell-checker",
+ "streetsidesoftware.code-spell-checker-dutch",
+ "ymotongpoo.licenser"
+ ]
+} \ No newline at end of file
diff --git a/.vscode/settings.json b/.vscode/settings.json
index 06b5ea8..9201a8e 100644
--- a/.vscode/settings.json
+++ b/.vscode/settings.json
@@ -1,8 +1,26 @@
{
+ "editor.rulers": [80],
+
+ // ESLint
"eslint.enable": true,
+
+ // Code Spell Checker
"cSpell.language": "en,nl",
+ "cSpell.words": [
+ "decrementing",
+ "devtools",
+ "dompurify",
+ "hetmml",
+ "metis",
+ "polyfill",
+ "presentational",
+ "rmwc",
+ "unmount"
+ ],
+
+ // Licenser
"licenser.projectName": "rooster.hetmml.nl",
"licenser.license": "GPLv3",
"licenser.author": "Noah Loomans",
- "licenser.useSingleLineStyle": false
+ "licenser.useSingleLineStyle": false,
}