https://github.com/agda/fix-whitespace
Fixes whitespace issues
https://github.com/agda/fix-whitespace
formatter sanitization version-control whitespace
Last synced: 7 months ago
JSON representation
Fixes whitespace issues
- Host: GitHub
- URL: https://github.com/agda/fix-whitespace
- Owner: agda
- License: other
- Created: 2019-09-11T06:57:01.000Z (over 6 years ago)
- Default Branch: master
- Last Pushed: 2025-05-19T10:59:19.000Z (8 months ago)
- Last Synced: 2025-06-12T22:51:53.360Z (7 months ago)
- Topics: formatter, sanitization, version-control, whitespace
- Language: Haskell
- Homepage: https://hackage.haskell.org/package/fix-whitespace
- Size: 113 KB
- Stars: 8
- Watchers: 8
- Forks: 7
- Open Issues: 6
-
Metadata Files:
- Readme: README.md
- Changelog: CHANGELOG.md
- License: LICENSE
Awesome Lists containing this project
README
fix-whitespace: Fixes whitespace issues
=======================================
[](http://hackage.haskell.org/package/fix-whitespace)
[](https://stackage.org/nightly/package/fix-whitespace)
[](https://www.stackage.org/package/fix-whitespace)
[](https://github.com/agda/fix-whitespace/actions)
[](https://github.com/agda/fix-whitespace/actions/workflows/haskell-ci.yml)
This tool can keep your project and repository clean of trailing
whitespace and missing terminal newline.
Usage: `fix-whitespace [-h|--help] [-v|--verbose] [-V|--version] [--check] [--config CONFIG] [FILES]`
The program does the following to files specified in `FILES` or in the
configuration file `fix-whitespace.yaml` under the current directory
(and its subdirectories):
* Remove trailing whitespace.
* Remove trailing lines containing nothing but whitespace.
* Ensure that the file ends in a newline character.
* Expand tabs to spaces (optionally).
Available options:
* `-h --help`
Show this help information.
* `-v --verbose`
Show files as they are being checked.
_Since 0.1:_ Display location of detected whitespace violations.
* `-V --version`
Show program's version.
* `--config=CONFIG`
Override the project configuration `fix-whitespace.yaml`.
* `--tab=TABSIZE`
Expand tab characters to TABSIZE (default: 8) many spaces.
Keep tabs if 0 is given as TABSIZE. _(Option available since 0.0.9.)_
* `--check`
With `--check` the program does not change any files,
it just checks if any files would have been changed.
In the latter case, it returns with a non-zero exit code.
For an example configuration file see [the one of Agda](https://github.com/agda/agda/blob/f9a181685397517b5d14943ca88a1c0acacc2075/fix-whitespace.yaml).
Continuous integration
----------------------
`fix-whitespace` comfortably integrates into your GitHub CI via the [`fix-whitespace-action`](https://github.com/andreasabel/fix-whitespace-action).