-
Notifications
You must be signed in to change notification settings - Fork 4
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge pull request #11 from delano/10-bug-undefined-method-register_s…
…cheme-for-urimodule Fix for undefined method register scheme for URI
- Loading branch information
Showing
6 changed files
with
92 additions
and
5 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 |
---|---|---|
@@ -0,0 +1,69 @@ | ||
## | ||
# Pre-Commit Configuration | ||
# | ||
# Initial setup: | ||
# | ||
# 0. Install the pre-commit framework (if it isn't already on your system): | ||
|
||
# $ pip install pre-commit | ||
# | ||
# 1. Install the git hook: | ||
# | ||
# $ pre-commit install | ||
# | ||
# | ||
# Other commands: | ||
# | ||
# Run it on all the files in this repo: | ||
# $ pre-commit run --all-files | ||
# | ||
# Updating plugin repositories: | ||
# $ pre-commit autoupdate | ||
# | ||
# Automatically enable pre-commit on repositories | ||
# $ git config --global init.templateDir ~/.git-template | ||
# $ pre-commit init-templatedir ~/.git-template | ||
# | ||
# See also: | ||
# - https://pre-commit.com for more information | ||
# - https://pre-commit.com/hooks.html for more hooks | ||
# | ||
|
||
default_install_hook_types: | ||
- pre-commit | ||
- prepare-commit-msg | ||
|
||
fail_fast: true | ||
|
||
repos: | ||
- repo: meta | ||
hooks: | ||
- id: check-hooks-apply | ||
- id: check-useless-excludes | ||
- id: identity | ||
|
||
- repo: https://github.com/pre-commit/pre-commit-hooks | ||
rev: v4.6.0 | ||
hooks: | ||
- id: trailing-whitespace | ||
- id: end-of-file-fixer | ||
- id: check-yaml | ||
- id: detect-private-key | ||
- id: mixed-line-ending | ||
- id: check-added-large-files | ||
args: ["--maxkb=1000"] | ||
- id: no-commit-to-branch | ||
args: ["--branch", "develop", "--branch", "rel/.*"] | ||
- id: check-merge-conflict | ||
- id: forbid-submodules | ||
|
||
- repo: https://github.com/avilaton/add-msg-issue-prefix-hook | ||
rev: v0.0.11 | ||
hooks: | ||
- id: add-msg-issue-prefix | ||
stages: [prepare-commit-msg] | ||
name: Link commit to Github issue | ||
args: | ||
- "--default=[NOJIRA]" | ||
- "--pattern=[a-zA-Z0-9]{0,10}-?[0-9]{1,5}" | ||
- "--template=[#{}]" |
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,4 +1,4 @@ | ||
# URI-Redis v1.1.2 (2024-05-02) | ||
# URI-Redis v1.2 (2024-05-20) | ||
|
||
Creates a URI object for Redis URLs. | ||
|
||
|
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