-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Add CHANGELOG with messaging about the repo move (#1)
* Add .pre-commit-config.yaml * Add basic CHANGELOG.md
- Loading branch information
Showing
2 changed files
with
53 additions
and
0 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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,41 @@ | ||
# This is the configuration for pre-commit, a local framework for managing pre-commit hooks | ||
# Check out the docs at: https://pre-commit.com/ | ||
repos: | ||
- repo: https://github.com/pre-commit/pre-commit-hooks | ||
rev: v5.0.0 | ||
hooks: | ||
- id: check-json | ||
- id: pretty-format-json | ||
args: [--autofix] | ||
- id: check-yaml | ||
args: [--allow-multiple-documents] | ||
- id: end-of-file-fixer | ||
- id: trailing-whitespace | ||
- repo: https://github.com/astral-sh/ruff-pre-commit | ||
rev: v0.7.1 | ||
hooks: | ||
# lint & attempt to correct failures (e.g. pyupgrade) | ||
- id: ruff | ||
args: [--fix] | ||
# compatible replacement for black | ||
- id: ruff-format | ||
- repo: https://github.com/macisamuele/language-formatters-pre-commit-hooks | ||
rev: v2.14.0 | ||
hooks: | ||
- id: pretty-format-toml | ||
args: [--autofix] | ||
- repo: https://github.com/codespell-project/codespell | ||
rev: v2.3.0 | ||
hooks: | ||
- id: codespell | ||
args: [--write] | ||
- repo: https://github.com/python-jsonschema/check-jsonschema | ||
rev: 0.29.4 | ||
hooks: | ||
- id: check-github-workflows | ||
- id: check-renovate | ||
# TODO: Re-enable once boilerplate repo setup is moved | ||
# - repo: meta | ||
# hooks: | ||
# - id: check-hooks-apply | ||
# - id: check-useless-excludes |
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,12 @@ | ||
# CHANGELOG | ||
|
||
We [keep a changelog.](http://keepachangelog.com/) | ||
|
||
## v0.4.1 | ||
|
||
This repository has been extracted from a private monorepo with history, and we will | ||
be backporting CHANGELOG entries. | ||
|
||
For now, the current state of the repo contains the source code which was used to | ||
build [v0.4.1](https://pypi.org/project/anaconda-cli-base/) and new releases will be | ||
made from this standalone repo. |