File tree Expand file tree Collapse file tree
Expand file tree Collapse file tree Original file line number Diff line number Diff line change 158158
1591591.0.0
160160=====
161- pre-commit will now be following [ semver] ( http ://semver.org/) . Thanks to all
161+ pre-commit will now be following [ semver] ( https ://semver.org/) . Thanks to all
162162of the [ contributors] ( https://github.com/pre-commit/pre-commit/graphs/contributors )
163163that have helped us get this far!
164164
@@ -561,7 +561,7 @@ that have helped us get this far!
561561
5625620.3.5
563563=====
564- - Support running during `pre-push`. See http ://pre-commit.com/#advanced 'pre-commit during push'.
564+ - Support running during `pre-push`. See https ://pre-commit.com/#advanced 'pre-commit during push'.
565565
5665660.3.4
567567=====
Original file line number Diff line number Diff line change @@ -44,7 +44,7 @@ With the environment activated simply run `pre-commit install`.
4444
4545## Documentation
4646
47- Documentation is hosted at http ://pre-commit.com
47+ Documentation is hosted at https ://pre-commit.com
4848
4949This website is controlled through
5050https://github.com/pre-commit/pre-commit.github.io
Original file line number Diff line number Diff line change 66
77A framework for managing and maintaining multi-language pre-commit hooks.
88
9- For more information see: http ://pre-commit.com/
9+ For more information see: https ://pre-commit.com/
Original file line number Diff line number Diff line change 88# significantly faster than https:// or http://). For now, periodically
99# manually updating the revision is fine.
1010SAMPLE_CONFIG = '''\
11- # See http ://pre-commit.com for more information
12- # See http ://pre-commit.com/hooks.html for more hooks
11+ # See https ://pre-commit.com for more information
12+ # See https ://pre-commit.com/hooks.html for more hooks
1313repos:
1414- repo: https://github.com/pre-commit/pre-commit-hooks
1515 sha: v0.9.2
Original file line number Diff line number Diff line change @@ -94,7 +94,7 @@ def main(argv=None):
9494 argv = [five .to_text (arg ) for arg in argv ]
9595 parser = argparse .ArgumentParser ()
9696
97- # http ://stackoverflow.com/a/8521644/812183
97+ # https ://stackoverflow.com/a/8521644/812183
9898 parser .add_argument (
9999 '-V' , '--version' ,
100100 action = 'version' ,
Original file line number Diff line number Diff line change @@ -56,7 +56,7 @@ def normexe(orig_exe):
5656
5757def normalize_cmd (cmd ):
5858 """Fixes for the following issues on windows
59- - http ://bugs.python.org/issue8557
59+ - https ://bugs.python.org/issue8557
6060 - windows does not parse shebangs
6161
6262 This function also makes deep-path shebangs work just fine
Original file line number Diff line number Diff line change @@ -68,7 +68,7 @@ def _write_sqlite_db(self):
6868 os .close (fd )
6969 # sqlite doesn't close its fd with its contextmanager >.<
7070 # contextlib.closing fixes this.
71- # See: http ://stackoverflow.com/a/28032829/812183
71+ # See: https ://stackoverflow.com/a/28032829/812183
7272 with contextlib .closing (sqlite3 .connect (tmpfile )) as db :
7373 db .executescript (
7474 'CREATE TABLE repos ('
Original file line number Diff line number Diff line change @@ -9,8 +9,8 @@ def test_sample_config(capsys):
99 assert ret == 0
1010 out , _ = capsys .readouterr ()
1111 assert out == '''\
12- # See http ://pre-commit.com for more information
13- # See http ://pre-commit.com/hooks.html for more hooks
12+ # See https ://pre-commit.com for more information
13+ # See https ://pre-commit.com/hooks.html for more hooks
1414repos:
1515- repo: https://github.com/pre-commit/pre-commit-hooks
1616 sha: v0.9.2
You can’t perform that action at this time.
0 commit comments