Skip to content

Commit ccaf5cb

Browse files
committed
chore(pixi): Add md linting
1 parent de43989 commit ccaf5cb

1 file changed

Lines changed: 8 additions & 1 deletion

File tree

pixi.toml

Lines changed: 8 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -38,11 +38,18 @@ _style-python = "ruff format && ruff check --fix"
3838
_style-md = "fd . --type file --extension md --exec mdformat --wrap 80"
3939
_style-toml = "tombi format ./"
4040

41+
_lint-md = """
42+
fd . \
43+
--type file \
44+
--extension md \
45+
--exec mdformat --wrap 80 \
46+
--check
47+
"""
4148
_lint-python = "ruff format --check && ruff check"
4249

4350
style = { depends-on = ["_style-md", "_style-python", "_style-toml"] }
4451

45-
lint = { depends-on = ["_lint-python"] }
52+
lint = { depends-on = ["_lint-md", "_lint-python"] }
4653

4754
[environments]
4855
style = { features = ["style"], no-default-feature = true }

0 commit comments

Comments
 (0)