Skip to content

Commit

Permalink
docs: Ignore mkdocs.yml and generated docs
Browse files Browse the repository at this point in the history
mkdocs.yml contains some reference to Python package data
which fails the pre-commit check.

Docs HTML is generated in docs/site/
  • Loading branch information
kissgyorgy committed Oct 27, 2024
1 parent 7b81aa4 commit 37d720a
Show file tree
Hide file tree
Showing 2 changed files with 6 additions and 2 deletions.
3 changes: 2 additions & 1 deletion .gitignore
Original file line number Diff line number Diff line change
@@ -1,8 +1,9 @@
.venvs
.devenv*
devenv.local.nix
.direnv
.pre-commit-config.yaml

.benchmarks

.venvs
docs/site/
5 changes: 4 additions & 1 deletion devenv.nix
Original file line number Diff line number Diff line change
Expand Up @@ -64,7 +64,10 @@ in
check-added-large-files.enable = true;
check-json.enable = true;
check-toml.enable = true;
check-yaml.enable = true;
check-yaml = {
enable = true;
excludes = [ "docs/mkdocs.yml" ];
};
trim-trailing-whitespace = {
enable = true;
excludes = [ ".*.md$" ];
Expand Down

0 comments on commit 37d720a

Please sign in to comment.