Skip to main content

CLI tool that ensures text files end with exactly one newline

Project description

eof-fixer

PyPI version Supported Python versions Downloads Coverage CI License GitHub stars Context7 uv Ruff ty

A command-line tool that ensures all your text files end with exactly one newline character. This tool helps maintain consistent file formatting across your codebase by automatically adding or removing trailing newlines as needed.

Why This Matters

Many POSIX systems expect text files to end with a newline character. Having consistent line endings:

  • Prevents spurious diffs in version control
  • Ensures proper concatenation of files
  • Satisfies POSIX compliance
  • Improves readability in terminal environments

Features

  • Automatically adds a newline to files that don't end with one
  • Removes excess trailing newlines from files that have too many
  • Respects nested .gitignore files throughout the tree to avoid processing unwanted files
  • Skip extra paths with the repeatable --exclude flag
  • Works with all text file types
  • Cross-platform compatibility (Windows, macOS, Linux)
  • Dry-run mode to preview changes before applying them

Installation

Using uv

uv add eof-fixer

Using pip

pip install eof-fixer

Usage

Basic Usage

To fix all files in the current directory and subdirectories:

eof-fixer .

To check which files would be modified without making changes:

eof-fixer . --check

To skip extra directories on top of the defaults, pass --exclude (repeatable):

eof-fixer . --exclude node_modules --exclude dist

How It Works

The eof-fixer processes files in the following way:

  1. Files with no trailing newline: Adds exactly one newline at the end
  2. Files with exactly one trailing newline: Leaves unchanged
  3. Files with multiple trailing newlines: Truncates to exactly one newline
  4. Empty files: Left unchanged

Examples

Original File Content After Processing
hello world hello world\n
hello world\n hello world\n
hello world\n\n\n hello world\n
`` (empty file) `` (unchanged)

Note on line endings: when appending a missing terminator, eof-fixer always writes an LF (\n), regardless of the existing line-ending style of the file. A file that otherwise uses CRLF or CR will end up with a mixed terminator on its last line. This matches the behavior of pre-commit's end-of-file-fixer. Files that already end with a single CRLF, CR, or LF are left untouched.

Configuration

The tool respects your .gitignore files, so it won't process files that are ignored by Git. It honors the full nested convention: the .gitignore at the root and any .gitignore files in subdirectories, with standard Git precedence — deeper files override shallower ones, and ! negations re-include. Ignore resolution is pure-filesystem: .git/info/exclude and the global core.excludesFile are not consulted, and Git itself is never invoked, so the tool works on any directory, repository or not.

Additionally, it always ignores:

  • .git directories (always, not configurable)
  • .cache and .uv-cache directories (used by uv) by default — pass --exclude DIR (repeatable) to add more names to skip on top of these
  • Binary files (detected by null bytes in the first 1024 bytes)

Exit Codes

  • 0: No files needed fixing.
  • 1: At least one file needed fixing. In --check mode no changes are written; in the default (fix) mode the files have been rewritten in place. The non-zero exit in fix mode is intentional so the tool can be used as a pre-commit or CI gate — re-run after the fix and the exit code returns to 0.

Development

Prerequisites

  • uv for dependency management

Setup

# Clone the repository
git clone https://github.com/modern-python/eof-fixer.git
cd eof-fixer

# Install dependencies
just install

Running Tests

# Run tests
just test

Linting

# Run linting and formatting
just lint

Contributing

Contributions are welcome! Please feel free to submit a Pull Request.

  1. Fork the repository
  2. Create your feature branch (git checkout -b feature/AmazingFeature)
  3. Commit your changes (git commit -m 'Add some amazing feature')
  4. Push to the branch (git push origin feature/AmazingFeature)
  5. Open a Pull Request

License

This project is licensed under the MIT License - see the LICENSE file for details.

Acknowledgments

The core file-fixing logic in this project is derived from the end-of-file-fixer hook in pre-commit/pre-commit-hooks, which is also distributed under the MIT License. This project repackages that logic as a standalone CLI with .gitignore-aware directory traversal so it can be used outside of the pre-commit framework.

Related Projects

  • pre-commit - A framework for managing and maintaining multi-language pre-commit hooks
  • editorconfig - Helps maintain consistent coding styles across different editors and IDEs

📦 PyPI

📝 License

Part of modern-python

Browse the full list of templates and libraries in modern-python — see the org profile for the categorized index.

Project details


Download files

Download the file for your platform. If you're not sure which to choose, learn more about installing packages.

Source Distribution

eof_fixer-0.4.1.tar.gz (6.8 kB view details)

Uploaded Source

Built Distribution

If you're not sure about the file name format, learn more about wheel file names.

eof_fixer-0.4.1-py3-none-any.whl (7.9 kB view details)

Uploaded Python 3

File details

Details for the file eof_fixer-0.4.1.tar.gz.

File metadata

  • Download URL: eof_fixer-0.4.1.tar.gz
  • Upload date:
  • Size: 6.8 kB
  • Tags: Source
  • Uploaded using Trusted Publishing? No
  • Uploaded via: uv/0.11.24 {"installer":{"name":"uv","version":"0.11.24","subcommand":["publish"]},"python":null,"implementation":{"name":null,"version":null},"distro":{"name":"Ubuntu","version":"24.04","id":"noble","libc":null},"system":{"name":null,"release":null},"cpu":null,"openssl_version":null,"setuptools_version":null,"rustc_version":null,"ci":true}

File hashes

Hashes for eof_fixer-0.4.1.tar.gz
Algorithm Hash digest
SHA256 43378075da2682b8b04fcf623983187b5bd71856de347d22b3e19eec6dd875c7
MD5 5d2fe270415c4b9039a9d363402a753b
BLAKE2b-256 7a5e784698da449707553a587e2809d0703417559b1e42bf3c9082d24b30a36d

See more details on using hashes here.

File details

Details for the file eof_fixer-0.4.1-py3-none-any.whl.

File metadata

  • Download URL: eof_fixer-0.4.1-py3-none-any.whl
  • Upload date:
  • Size: 7.9 kB
  • Tags: Python 3
  • Uploaded using Trusted Publishing? No
  • Uploaded via: uv/0.11.24 {"installer":{"name":"uv","version":"0.11.24","subcommand":["publish"]},"python":null,"implementation":{"name":null,"version":null},"distro":{"name":"Ubuntu","version":"24.04","id":"noble","libc":null},"system":{"name":null,"release":null},"cpu":null,"openssl_version":null,"setuptools_version":null,"rustc_version":null,"ci":true}

File hashes

Hashes for eof_fixer-0.4.1-py3-none-any.whl
Algorithm Hash digest
SHA256 1ad4cd54e12ecdc10ca8539c1952c313074a3e1f0946dfc736479f01d59e43d7
MD5 6ea293ccb8a78161c33e09d719b9519b
BLAKE2b-256 af27b66c620c8f973baf801007179e5ff22acf737fc3c2cc88343bb032cc2432

See more details on using hashes here.

Supported by

AWS Cloud computing and Security Sponsor Datadog Monitoring Depot Continuous Integration Fastly CDN Google Download Analytics Pingdom Monitoring Sentry Error logging StatusPage Status page