Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Activate prettier-plugin-toml in pre-commit hook #29

Draft
wants to merge 3 commits into
base: main
Choose a base branch
from
Draft
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
1 change: 1 addition & 0 deletions .pre-commit-config.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -16,6 +16,7 @@ repos:
- prettier
- prettier-plugin-toml
- prettier-plugin-sort-json
args: [--plugin, prettier-plugin-toml]
- repo: https://github.com/PyCQA/doc8.git
rev: v1.1.1
hooks:
Expand Down
4 changes: 2 additions & 2 deletions pyproject.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[build-system]
requires = [
"setuptools >= 63.0.0", # required by pyproject+setuptools_scm integration
"setuptools >= 63.0.0", # required by pyproject+setuptools_scm integration
"setuptools_scm[toml] >= 7.0.5", # required for "no-local-version" scheme

]
Expand All @@ -15,7 +15,7 @@ description = "PyTest Plus Plugin :: extends pytest functionality"
readme = "README.md"
authors = [{ "name" = "Sorin Sbarnea", "email" = "sorin.sbarnea@gmail.com" }]
maintainers = [
{ "name" = "Sorin Sbarnea", "email" = "sorin.sbarnea@gmail.com" }
{ "name" = "Sorin Sbarnea", "email" = "sorin.sbarnea@gmail.com" },
]
license = { text = "MIT" }
classifiers = [
Expand Down
Loading