1
0
Fork 0

Add checkdocs workflow.

This commit is contained in:
Nick Dower 2022-02-19 13:39:38 +01:00
parent c7a719ab82
commit e9dbdc46fc
17 changed files with 88 additions and 59 deletions

View file

@ -65,9 +65,11 @@ git config --global user.name "<your display name for your git account>"
FreeSewing uses .editorconfig files to enforce a consistent style for the project. VSCode relies on extensions to provide this functionality and due to a design shortcoming it does not respect certain editorconfig options which will break certain files in the freesewing project ([see vscode/65663 for details](https://github.com/microsoft/vscode/issues/65663)). If you use this editor please ensure that your settings.json file is configured to not trim trailing whitespace from markdown files. The following snippet can be added to your settings.json file to add an exemption for this file type:
```json
"[markdown]": {
"files.trimTrailingWhitespace": false
},
```
</Note>