From 6ba3f9c849e997ce14fa7ce88975a00181fcf9a5 Mon Sep 17 00:00:00 2001 From: Patrick Jentsch Date: Fri, 10 Mar 2023 12:56:09 +0100 Subject: [PATCH] Add settings to project vscode settings.yml --- .vscode/settings.json | 23 ++++++++++++++++++++++- app/static/js/Requests/Corpora.js | 0 2 files changed, 22 insertions(+), 1 deletion(-) delete mode 100644 app/static/js/Requests/Corpora.js diff --git a/.vscode/settings.json b/.vscode/settings.json index 0967ef42..c2a8567e 100644 --- a/.vscode/settings.json +++ b/.vscode/settings.json @@ -1 +1,22 @@ -{} +{ + "editor.rulers": [79], + "files.insertFinalNewline": true, + "[css]": { + "editor.tabSize": 2 + }, + "[scss]": { + "editor.tabSize": 2 + }, + "[html]": { + "editor.tabSize": 2 + }, + "[javascript]": { + "editor.tabSize": 2 + }, + "[jinja-html]": { + "editor.tabSize": 2 + }, + "[jinja-js]": { + "editor.tabSize": 2 + }, +} diff --git a/app/static/js/Requests/Corpora.js b/app/static/js/Requests/Corpora.js deleted file mode 100644 index e69de29b..00000000