feat: add the option not to include the extra newline of the Tree
's __rich_console__
#3905
Workflow file for this run
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
name: codespell | |
on: [pull_request, push] | |
jobs: | |
codespell: | |
runs-on: ubuntu-latest | |
steps: | |
- uses: actions/checkout@v4 | |
- run: python3 -m pip install codespell | |
- run: codespell --ignore-words-list="ba,fo,hel,revered,womens" | |
--skip="./README.*.md,*.svg,*.ai,./benchmarks/snippets.py,./tests,./tools,*.lock" |