Skip to content

Commit

Permalink
Do not lint Markdown
Browse files Browse the repository at this point in the history
  • Loading branch information
ilyannn committed Jan 14, 2024
1 parent 240b8ff commit fd44cdf
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions justfile
Original file line number Diff line number Diff line change
Expand Up @@ -7,15 +7,15 @@ yaml_files := ".github/*/*.yml"

# format Markdown, YAML and Python files
fmt:
prettier --write -- {{markdown_files}} {{yaml_files}}
# prettier --write -- {{markdown_files}} {{yaml_files}}
isort --settings-path .github/linters/.isort.cfg -- {{python_files}}
black -- {{python_files}}

# lint Markdown, YAML and Python files
lint:
yamllint --config-file .github/linters/.yaml-lint.yml -- {{yaml_files}}
markdownlint --config .github/linters/.markdown-lint.yml -- {{markdown_files}}
prettier --check -- {{markdown_files}} {{yaml_files}}
# markdownlint --config .github/linters/.markdown-lint.yml -- {{markdown_files}}
# prettier --check -- {{markdown_files}} {{yaml_files}}
flake8 --config .github/linters/.flake8 -- {{python_files}}
isort --settings-path .github/linters/.isort.cfg --check --diff -- {{python_files}}
black --diff -- {{python_files}}
Expand Down

0 comments on commit fd44cdf

Please sign in to comment.