Skip to content

Commit

Permalink
chore: fix code spell errors (#1431)
Browse files Browse the repository at this point in the history
  • Loading branch information
dopry authored Jun 13, 2024
1 parent c09ca76 commit 9a862fc
Show file tree
Hide file tree
Showing 3 changed files with 14 additions and 14 deletions.
16 changes: 8 additions & 8 deletions .pre-commit-config.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -29,11 +29,11 @@ repos:
rev: v0.9.1
hooks:
- id: sphinx-lint
# Configuration for codespell is in pyproject.toml
# - repo: https://github.com/codespell-project/codespell
# rev: v2.3.0
# hooks:
# - id: codespell
# exclude: (package-lock.json|/locale/)
# additional_dependencies:
# - tomli
# Configuration for codespell is in pyproject.toml
- repo: https://github.com/codespell-project/codespell
rev: v2.3.0
hooks:
- id: codespell
exclude: (package-lock.json|/locale/)
additional_dependencies:
- tomli
2 changes: 1 addition & 1 deletion CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -206,7 +206,7 @@ This is a major release with **BREAKING** changes. Please make sure to review th

## [1.6.0] 2021-12-19
### Added
* #949 Provide django.contrib.auth.authenticate() with a `request` for compatibiity with more backends (like django-axes).
* #949 Provide django.contrib.auth.authenticate() with a `request` for compatibility with more backends (like django-axes).
* #968, #1039 Add support for Django 3.2 and 4.0.
* #953 Allow loopback redirect URIs using random ports as described in [RFC8252 section 7.3](https://datatracker.ietf.org/doc/html/rfc8252#section-7.3).
* #972 Add Farsi/fa language support.
Expand Down
10 changes: 5 additions & 5 deletions pyproject.toml
Original file line number Diff line number Diff line change
Expand Up @@ -10,8 +10,8 @@ exclude = '''
'''

# Ref: https://github.com/codespell-project/codespell#using-a-config-file
# [tool.codespell]
# skip = '.git,package-lock.json,locale'
# check-hidden = true
# ignore-regex = '.*pragma: codespell-ignore.*'
# ignore-words-list = ''
[tool.codespell]
skip = '.git,package-lock.json,locale,AUTHORS,tox.ini'
check-hidden = true
ignore-regex = '.*pragma: codespell-ignore.*'
ignore-words-list = 'assertIn'

0 comments on commit 9a862fc

Please sign in to comment.