1
0
mirror of https://github.com/arsenetar/dupeguru.git synced 2026-01-22 14:41:39 +00:00

Add workflow yml validation settings

- Add yml validation to project for vscode
- Allow .vscode/settings.json
- Apply formatting to workflow files
This commit is contained in:
2022-03-21 22:18:22 -05:00
parent 8d414cadac
commit 448d33dcb6
4 changed files with 88 additions and 76 deletions

12
.vscode/settings.json vendored Normal file
View File

@@ -0,0 +1,12 @@
{
"python.formatting.provider": "black",
"cSpell.words": [
"Dupras",
"hscommon"
],
"python.languageServer": "Pylance",
"yaml.schemaStore.enable": true,
"yaml.schemas": {
"https://json.schemastore.org/github-workflow.json": ".github/workflows/*.yml"
}
}