From 7e5cea4ab7b0150e1861c99516e6220e89e8c3e8 Mon Sep 17 00:00:00 2001 From: Nikolas Rimikis Date: Sun, 1 Oct 2023 09:06:30 +0200 Subject: [PATCH] feat(tool): add vscode extension recommendations Signed-off-by: Nikolas Rimikis --- .vscode/extensions.json | 9 +++++++++ .vscode/settings.json | 8 +++++--- 2 files changed, 14 insertions(+), 3 deletions(-) create mode 100644 .vscode/extensions.json diff --git a/.vscode/extensions.json b/.vscode/extensions.json new file mode 100644 index 00000000..3a7e9f8e --- /dev/null +++ b/.vscode/extensions.json @@ -0,0 +1,9 @@ +{ + "recommendations": [ + "dart-code.dart-code", + "dart-code.flutter", + "jebbs.plantuml", + "redhat.vscode-yaml", + "streetsidesoftware.code-spell-checker" + ] +} diff --git a/.vscode/settings.json b/.vscode/settings.json index 0d4504a9..a703676f 100644 --- a/.vscode/settings.json +++ b/.vscode/settings.json @@ -2,12 +2,14 @@ "dart.lineLength": 120, "yaml.format.singleQuote": true, "dart.flutterSdkPath": ".fvm/flutter_sdk", - // Remove .fvm files from search + "files.insertFinalNewline": true, "search.exclude": { "**/.fvm": true }, - // Remove from file watching "files.watcherExclude": { "**/.fvm": true + }, + "files.associations": { + "*.arb": "json", } -} \ No newline at end of file +}