### Development Setup: Install Dependencies Source: https://github.com/modern-python/eof-fixer/blob/main/README.md Installs project dependencies using the 'just' command, typically for development or testing purposes. Ensure you have 'just' installed. ```bash just install ``` -------------------------------- ### Install eof-fixer using pip Source: https://github.com/modern-python/eof-fixer/blob/main/README.md Use this command to install the eof-fixer package using pip. ```bash pip install eof-fixer ``` -------------------------------- ### Install eof-fixer using uv Source: https://github.com/modern-python/eof-fixer/blob/main/README.md Use this command to add the eof-fixer package to your project dependencies when using uv for package management. ```bash uv add eof-fixer ``` -------------------------------- ### Project Commands Source: https://github.com/modern-python/eof-fixer/blob/main/CLAUDE.md These commands are available for managing dependencies, linting, and testing within the project. Use 'just' to execute them. ```bash just install # Lock deps and sync just lint # Format + check + type check (auto-fixes) just lint-ci # Lint in check mode only (no fixes) just test # Run pytest with coverage just test tests/test_end_of_file_fixer.py::test_name # Run a single test ``` -------------------------------- ### Development: Run Linting and Formatting Source: https://github.com/modern-python/eof-fixer/blob/main/README.md Applies linting and code formatting rules to the project using the 'just lint' command. This helps maintain code consistency and quality. ```bash just lint ``` -------------------------------- ### Development: Run Tests Source: https://github.com/modern-python/eof-fixer/blob/main/README.md Executes the test suite for the eof-fixer project using the 'just test' command. This is part of the development workflow to ensure code quality. ```bash just test ``` -------------------------------- ### Fix all files in current directory Source: https://github.com/modern-python/eof-fixer/blob/main/README.md Run this command to fix all text files in the current directory and its subdirectories, ensuring they end with exactly one newline. ```bash eof-fixer . ``` -------------------------------- ### Check files for missing newlines without modifying Source: https://github.com/modern-python/eof-fixer/blob/main/README.md Use this flag to check which files would be modified by eof-fixer without actually making any changes. This is useful for previewing the impact of the tool. ```bash eof-fixer . --check ``` === COMPLETE CONTENT === This response contains all available snippets from this library. No additional content exists. Do not make further requests.