Run Prettier over Markdown and YAML files (#35)

## Summary

Partly personal preference, but mostly to align with other Astral
projects.
This commit is contained in:
Charlie Marsh 2024-09-04 17:14:10 -04:00 committed by GitHub
parent 6f825bd8e7
commit 0fa3b93f6e
No known key found for this signature in database
GPG key ID: B5690EEEBB952194
16 changed files with 192 additions and 173 deletions

30
.github/python.json vendored
View file

@ -1,18 +1,18 @@
{
"problemMatcher": [
"problemMatcher": [
{
"owner": "python",
"pattern": [
{
"owner": "python",
"pattern": [
{
"regexp": "^\\s*File\\s\\\"(.*)\\\",\\sline\\s(\\d+),\\sin\\s(.*)$",
"file": 1,
"line": 2
},
{
"regexp": "^\\s*raise\\s(.*)\\(\\'(.*)\\'\\)$",
"message": 2
}
]
"regexp": "^\\s*File\\s\\\"(.*)\\\",\\sline\\s(\\d+),\\sin\\s(.*)$",
"file": 1,
"line": 2
},
{
"regexp": "^\\s*raise\\s(.*)\\(\\'(.*)\\'\\)$",
"message": 2
}
]
}
]
}
]
}