Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Introduce typos pre-commit and fix all current typos #1063

Merged
merged 10 commits into from
Mar 3, 2024
Prev Previous commit
Next Next commit
fix: pre-commit failures
Add .github/ to exclude since I couldn't get it to check here locally by
default but it did seem to be on the pre-commit hook
  • Loading branch information
mitches-got-glitches committed Mar 1, 2024
commit 9e18c6be0566374075945c1e3422f9a7a233e9a0
2 changes: 1 addition & 1 deletion .github/workflows/main.yml
Original file line number Diff line number Diff line change
Expand Up @@ -21,7 +21,7 @@ on:
workflow_dispatch:

# When a Push is made on an existing branch/PR
# it cancells any pre running job and
# it cancels any pre running job and
# let only the latest executing
concurrency:
group: ${{ github.workflow }}-${{ github.ref }}
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/release.yml
Original file line number Diff line number Diff line change
Expand Up @@ -19,7 +19,7 @@ jobs:
with:
python-version: "3.8"

- name: "Prepare build environemnt"
- name: "Prepare build environment"
run: |
pip install --user python-minifier wheel setuptools

Expand Down
2 changes: 1 addition & 1 deletion _typos.toml
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
[files]
extend-exclude = ["*.svg", "pt-br", "dynaconf/vendor/*"]
extend-exclude = ["*.svg", "pt-br", "dynaconf/vendor/*", ".github/*"]

[default.extend-words]
Fo = "Fo"
Expand Down
2 changes: 1 addition & 1 deletion tests_functional/validators/with_python/.env
Original file line number Diff line number Diff line change
Expand Up @@ -2,5 +2,5 @@
EXAMPLE_MYSQL_PASSWD=SuperSecret

# change dynaconf's global namespace to EXAMPLE
# so the previou defined value is loaded
# so the previous defined value is loaded
ENVVAR_PREFIX_FOR_DYNACONF='EXAMPLE'
Loading