We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 0bb8efa commit 1896c18Copy full SHA for 1896c18
.pre-commit-config.yaml
@@ -1,4 +1,5 @@
1
---
2
+# https://pre-commit.com/
3
default_stages: [commit, push]
4
default_language_version:
5
# force all unspecified Python hooks to run python3
@@ -53,6 +54,8 @@ repos:
53
54
name: Run markdownlint
55
description: Check all Markdown files with markdownlint
56
entry: markdownlint -c .github/linters/.markdown-lint.yml .
57
+ types: [markdown]
58
+ files: \.(md|mdown|markdown)$
59
- repo: https://github.com/adrienverge/yamllint
60
rev: v1.26.1
61
hooks:
@@ -61,3 +64,4 @@ repos:
64
description: Check YAML files with yamllint
62
65
entry: yamllint --strict -c .github/linters/.yaml-lint.yml .
63
66
types: [yaml]
67
+ files: \.(yml|yaml)$
.rubocop.yml
@@ -1,3 +1,4 @@
+# https://rubocop.org/
AllCops:
NewCops: disable
0 commit comments