Skip to content

Commit

Permalink
Fixes formatting errors. !minor
Browse files Browse the repository at this point in the history
  • Loading branch information
coordt committed Apr 12, 2023
1 parent 3e42e0a commit 5267ca2
Show file tree
Hide file tree
Showing 3 changed files with 15 additions and 24 deletions.
2 changes: 1 addition & 1 deletion .cookiecutter.json
Original file line number Diff line number Diff line change
@@ -1 +1 @@
{"_copy_without_render":[".github/**/*.yaml",".github/**/*.jinja","docsrc/**/*.rst"],"_dev_requirements":{"bump2version":">=1.0.1","generate-changelog":">=0.7.6","git-fame":">=1.12.2","pip-tools":""},"_docs_requirements":{"Sphinx":">=4.3.0","furo":"","ghp-import":"","linkify-it-py":"","myst-parser":"","sphinx-autodoc-typehints":"","sphinx-click":"","sphinx-copybutton":""},"_prod_requirements":{"environs":">=9.3.5","rich-click":""},"_test_requirements":{"coverage":"~=6.1.2","poetry":"~=1.3.2","pre-commit":"~=2.15.0","pytest":"~=6.0.0","pytest-cov":"~=3.0.0"},"author":"Corey Oordt","email":"coreyoordt@gmail.com","friendly_name":"Bump My Version","github_user":"callowayproject","packaging_tool":"pip/setuptools","project_name":"bump-my-version","project_short_description":"Version bump your Python project","project_slug":"bump_version","version":"0.1.0"}
{"_copy_without_render":[".github/**/*.yaml",".github/**/*.jinja","docsrc/**/*.rst"],"_dev_requirements":{"bump2version":">=1.0.1","generate-changelog":">=0.7.6","git-fame":">=1.12.2","pip-tools":""},"_docs_requirements":{"Sphinx":">=4.3.0","furo":"","ghp-import":"","linkify-it-py":"","myst-parser":"","sphinx-autodoc-typehints":"","sphinx-click":"","sphinx-copybutton":""},"_prod_requirements":{"environs":">=9.3.5","rich-click":""},"_test_requirements":{"coverage":"~=6.1.2","poetry":"~=1.3.2","pre-commit":"~=2.15.0","pytest":"~=6.0.0","pytest-cov":"~=3.0.0"},"author":"Corey Oordt","email":"coreyoordt@gmail.com","friendly_name":"Bump My Version","github_user":"callowayproject","packaging_tool":"pip/setuptools","project_name":"bump-my-version","project_short_description":"Version bump your Python project","project_slug":"bump_version","version":"0.1.0"}
29 changes: 10 additions & 19 deletions .secrets.baseline
Original file line number Diff line number Diff line change
Expand Up @@ -75,10 +75,18 @@
{
"path": "detect_secrets.filters.allowlist.is_line_allowlisted"
},
{
"path": "detect_secrets.filters.common.is_baseline_file",
"filename": ".secrets.baseline"
},
{
"path": "detect_secrets.filters.common.is_ignored_due_to_verification_policies",
"min_level": 2
},
{
"path": "detect_secrets.filters.gibberish.should_exclude_secret",
"limit": 3.7
},
{
"path": "detect_secrets.filters.heuristic.is_indirect_reference"
},
Expand Down Expand Up @@ -107,23 +115,6 @@
"path": "detect_secrets.filters.heuristic.is_templated_secret"
}
],
"results": {
".secrets.baseline": [
{
"type": "Hex High Entropy String",
"filename": ".secrets.baseline",
"hashed_secret": "7c57cfdd241f019222b465b023af098ebd9007cd",
"is_verified": false,
"line_number": 115
},
{
"type": "Secret Keyword",
"filename": ".secrets.baseline",
"hashed_secret": "7c57cfdd241f019222b465b023af098ebd9007cd",
"is_verified": false,
"line_number": 115
}
]
},
"generated_at": "2023-01-03T19:33:38Z"
"results": {},
"generated_at": "2023-04-12T14:02:33Z"
}
8 changes: 4 additions & 4 deletions CONTRIBUTING.md
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,7 @@ There are several ways to create your isolated environment. This is the default

Run the following in a terminal:

```
```console
# Clone the repository
git clone https://github.com/callowayproject/bump-my-version.git

Expand All @@ -26,15 +26,15 @@ python -m pip install -r requirements/dev.txt
### Run tests

Once setup, you should be able to run tests:
```

```console
pytest
```

## Install Pre-commit Hooks


Pre-commit hooks are scripts that run every time you make a commit. If any of the scripts fail, it stops the commit. You can see a listing of the checks in the ``.pre-commit-config.yaml`` file.

```
```console
pre-commit install
```

0 comments on commit 5267ca2

Please sign in to comment.