-
Notifications
You must be signed in to change notification settings - Fork 160
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
Showing
2 changed files
with
37 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,34 @@ | ||
# Changelog | ||
|
||
All notable changes to this project will be documented in this file. | ||
|
||
The format is loosely based on [Keep a Changelog](https://keepachangelog.com/en/1.0.0/) | ||
and is a rolling release. | ||
|
||
## 2019-10-02 | ||
|
||
### Added | ||
|
||
- The `run` derivation now uses [gitignore](https://github.com/hercules-ci/gitignore#readme) | ||
|
||
- Custom hooks can now be added | ||
|
||
### Changed | ||
|
||
- Hooks configuration is now module-based (using the module system, like NixOS). | ||
`.pre-commit-config.yaml` is now obsolete with `nix-pre-commit-hooks`. Translate it to the `hooks` argument. For example: | ||
|
||
``` | ||
pre-commit-check = nix-pre-commit-hooks.run { | ||
src = ./.; | ||
hooks = { | ||
elm-format.enable = true; | ||
ormolu.enable = true; | ||
shellcheck.enable = true; | ||
}; | ||
}; | ||
``` | ||
|
||
### Fixed | ||
|
||
- Some small improvements to the installation script (`shellHook`) |
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