Browse Source

Merge pull request #896 from nextcloud/tool/vscode

add vscode extension recommendations
pull/901/head
Nikolas Rimikis 1 year ago committed by GitHub
parent
commit
b26c819653
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
  1. 9
      .vscode/extensions.json
  2. 6
      .vscode/settings.json

9
.vscode/extensions.json vendored

@ -0,0 +1,9 @@
{
"recommendations": [
"dart-code.dart-code",
"dart-code.flutter",
"jebbs.plantuml",
"redhat.vscode-yaml",
"streetsidesoftware.code-spell-checker"
]
}

6
.vscode/settings.json vendored

@ -2,12 +2,14 @@
"dart.lineLength": 120, "dart.lineLength": 120,
"yaml.format.singleQuote": true, "yaml.format.singleQuote": true,
"dart.flutterSdkPath": ".fvm/flutter_sdk", "dart.flutterSdkPath": ".fvm/flutter_sdk",
// Remove .fvm files from search "files.insertFinalNewline": true,
"search.exclude": { "search.exclude": {
"**/.fvm": true "**/.fvm": true
}, },
// Remove from file watching
"files.watcherExclude": { "files.watcherExclude": {
"**/.fvm": true "**/.fvm": true
},
"files.associations": {
"*.arb": "json",
} }
} }
Loading…
Cancel
Save