Skip to content

Commit db0db01

Browse files
cclaussgithub-actions
and
github-actions
authored
Use self-documenting option instead of cryptic option (TheAlgorithms#2487)
* Use self-documenting option instead of cryptic option @mateuszz0000 Your review, please. Pretend that you do not know what `-L` stands for. How many keystrokes and clicks does it take to confirm the purpose of this option? * updating DIRECTORY.md Co-authored-by: github-actions <${GITHUB_ACTOR}@users.noreply.github.com>
1 parent 72fe611 commit db0db01

File tree

2 files changed

+3
-1
lines changed

2 files changed

+3
-1
lines changed

.github/workflows/codespell.yml

+1-1
Original file line numberDiff line numberDiff line change
@@ -11,7 +11,7 @@ jobs:
1111
- run: pip install codespell flake8
1212
- run: |
1313
SKIP="./.*,./other/dictionary.txt,./other/words,./project_euler/problem_22/p022_names.txt"
14-
codespell -L ans,fo,hist,iff,secant,tim --skip=$SKIP --quiet-level=2
14+
codespell --ignore-words-list=ans,fo,hist,iff,secant,som,tim --skip=$SKIP --quiet-level=2
1515
- name: Codespell comment
1616
if: ${{ failure() }}
1717
uses: plettich/python_codespell_action@master

DIRECTORY.md

+2
Original file line numberDiff line numberDiff line change
@@ -646,6 +646,8 @@
646646
* [Sol1](https://github.com/TheAlgorithms/Python/blob/master/project_euler/problem_67/sol1.py)
647647
* Problem 76
648648
* [Sol1](https://github.com/TheAlgorithms/Python/blob/master/project_euler/problem_76/sol1.py)
649+
* Problem 97
650+
* [Sol1](https://github.com/TheAlgorithms/Python/blob/master/project_euler/problem_97/sol1.py)
649651
* Problem 99
650652
* [Sol1](https://github.com/TheAlgorithms/Python/blob/master/project_euler/problem_99/sol1.py)
651653

0 commit comments

Comments
 (0)