-
Notifications
You must be signed in to change notification settings - Fork 121
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Update README and add more pre-commit checks (#694)
- Loading branch information
Showing
18 changed files
with
217 additions
and
121 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,28 +1,29 @@ | ||
change: | ||
- head-branch: ['^change/'] | ||
- head-branch: ["^change/"] | ||
|
||
enhancement: | ||
- head-branch: ['^feature/', '^feat/', '^enhancement/', '^enh/'] | ||
- head-branch: ["^feature/", "^feat/", "^enhancement/", "^enh/"] | ||
|
||
bug: | ||
- head-branch: ['^fix/', '^bug/'] | ||
- head-branch: ["^fix/", "^bug/"] | ||
|
||
chore: | ||
- head-branch: ['^chore/'] | ||
- head-branch: ["^chore/"] | ||
|
||
documentation: | ||
- head-branch: ['^docs/', '^doc/'] | ||
- head-branch: ["^docs/", "^doc/"] | ||
- changed-files: | ||
- any-glob-to-any-file: '**/*.md' | ||
- any-glob-to-any-file: "**/*.md" | ||
|
||
dependencies: | ||
- head-branch: ['^deps/', '^dep/', '^dependabot/', 'pre-commit-ci-update-config'] | ||
- head-branch: | ||
["^deps/", "^dep/", "^dependabot/", "pre-commit-ci-update-config"] | ||
|
||
tests: | ||
- any: | ||
- head-branch: ['^tests/', '^test/'] | ||
- head-branch: ["^tests/", "^test/"] | ||
- changed-files: | ||
- any-glob-to-any-file: 'test/**/*' | ||
- any-glob-to-any-file: "test/**/*" | ||
- all: | ||
- changed-files: | ||
- all-globs-to-all-files: '!test/requirements.txt' | ||
- all-globs-to-all-files: "!test/requirements.txt" |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,18 @@ | ||
# Rule configuration. | ||
# For rule descriptions and how to fix: https://github.com/DavidAnson/markdownlint/tree/main#rules--aliases | ||
config: | ||
ul-style: | ||
style: dash | ||
no-duplicate-heading: | ||
siblings_only: true | ||
line-length: | ||
line_length: 120 | ||
code_blocks: false | ||
tables: false | ||
|
||
# Define glob expressions to ignore | ||
ignores: | ||
- ".github/" | ||
|
||
# Fix any fixable errors | ||
fix: true |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,16 @@ | ||
--- | ||
ignore-from-file: .gitignore | ||
|
||
extends: default | ||
|
||
rules: | ||
comments: | ||
min-spaces-from-content: 1 | ||
comments-indentation: enable | ||
document-start: disable | ||
line-length: | ||
max: 120 | ||
ignore: | | ||
.github/ | ||
truthy: | ||
check-keys: false |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Oops, something went wrong.