Skip to content

Commit 2ba944d

Browse files
committed
Make RSC use the upstream yamllint repo
Now that this pull request [1] has been merged, the upstream version of yamllint contains the fix that I wanted. I no longer need to use my own fork of the yamllint repo in order to get that fix. Fixes #22. [1]: <adrienverge/yamllint#630>
1 parent 8ab6234 commit 2ba944d

File tree

1 file changed

+1
-7
lines changed

1 file changed

+1
-7
lines changed

jasons_pre_commit_hooks/repo_style_checker.py

Lines changed: 1 addition & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -170,14 +170,8 @@ class PreCommitRepoInfo(NamedTuple):
170170
hook_ids=('pretty-format-toml',),
171171
args=('--autofix', '--indent', '4')
172172
)
173-
# This is the version of yamllint from this PR:
174-
# <https://github.com/adrienverge/yamllint/pull/630>.
175-
#
176-
# Normally, I would just use a stable release of yamllint, but
177-
# stable releases are likely to not work properly on Windows,
178-
# and being platform neutral is very important to me.
179173
PCR_YAMLLINT: Final = PreCommitRepoInfo(
180-
url='https://github.com/Jayman2000/yamllint-pr',
174+
url='https://github.com/adrienverge/yamllint',
181175
hook_ids=('yamllint',)
182176
)
183177
PCR_MARKDOWNLINT_CLI: Final = PreCommitRepoInfo(

0 commit comments

Comments
 (0)