Skip to content

Commit

Permalink
Merge pull request #28 from TheGiraffe3/spellcheck
Browse files Browse the repository at this point in the history
Add a plugin/spellcheck and fix typos
  • Loading branch information
kestrel1110 authored Sep 16, 2024
2 parents 3f74297 + 0ec80bd commit fd44704
Show file tree
Hide file tree
Showing 6 changed files with 71 additions and 34 deletions.
2 changes: 2 additions & 0 deletions .github/workflows/ignore-words.txt
Original file line number Diff line number Diff line change
@@ -0,0 +1,2 @@
commend
tread
33 changes: 33 additions & 0 deletions .github/workflows/spellcheck.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,33 @@
name: Spell Checking

on: [push, pull_request]

jobs:
codespell:
name: Check spelling with codespell
runs-on: ubuntu-latest
strategy:
matrix:
python-version: [3.8]
steps:
- uses: actions/checkout@v2
- name: Set up Python 3.8
uses: actions/setup-python@v2
with:
python-version: 3.8
- name: Install dependencies
run: |
python -m pip install --upgrade pip
pip install codespell
if [ -f requirements.txt ]; then pip install -r requirements.txt; fi
- name: Check spelling with codespell
run: codespell --ignore-words=.github/workflows/ignore-words.txt || exit 1
# misspell:
# name: Check spelling with misspell
# runs-on: ubuntu-latest
# steps:
# - uses: actions/checkout@v2
# - name: Install
# run: wget -O - -q https://git.io/misspell | sh -s -- -b .
# - name: Misspell
# run: ./misspell -error
2 changes: 1 addition & 1 deletion data/New_outline.txt
Original file line number Diff line number Diff line change
Expand Up @@ -16,7 +16,7 @@ Early Work
Involvement in the war
-payment to buy cruiser (or maybe a gunboat at this stage, idk yet) [source:geminus] & navy license
# -first battle (kornephoros) NEED BETTER DIALOGUE!!!
>>>>> [MIKE: Kornephoros surrenders to the Republic without a fight in the FW storyline - resistance should either be light or nonexistant. This would also be where Katya gets captured, so having <first> be the one to bring her in would be the way to go. The first battle the FW has is actually in Sabik, not Kornephoros.]
>>>>> [MIKE: Kornephoros surrenders to the Republic without a fight in the FW storyline - resistance should either be light or nonexistent. This would also be where Katya gets captured, so having <first> be the one to bring her in would be the way to go. The first battle the FW has is actually in Sabik, not Kornephoros.]
-planting sensors on hope and sensors on other planets (need exact ones from the FW campaign)
>>>>> [MIKE: I've combed most of the mission text and there doesn't seem to be any mention of sensors being installed other than the one on Hope. However, New Iceland in Kaus Borealis, New Wales in Algorel and New Austria in Menkent have bases constructed on them in the wake of being routed in Sabik.]
-go on unsuccessful investigation of martini stock exchange
Expand Down
Loading

0 comments on commit fd44704

Please sign in to comment.