Skip to content
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
8 changes: 8 additions & 0 deletions .codespellrc
Original file line number Diff line number Diff line change
@@ -0,0 +1,8 @@
[codespell]
# Ref: https://github.com/codespell-project/codespell#using-a-config-file
skip = .git*,*.css,.codespellrc,LICENSE
check-hidden = true
# Case sensitive etc. Python regex
ignore-regex = \b(CLOS|oh noes|xmlns:\S+)\b|github\.com/dsnet/compress/flate|Use "\S+".* not "\S+"
# Unfortunate/suboptimal choices of variables/words
ignore-words-list = anumber,afile,statics
25 changes: 25 additions & 0 deletions .github/workflows/codespell.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,25 @@
# Codespell configuration is within .codespellrc
---
name: Codespell

on:
push:
branches: [gh-pages]
pull_request:
branches: [gh-pages]

permissions:
contents: read

jobs:
codespell:
name: Check for spelling errors
runs-on: ubuntu-latest

steps:
- name: Checkout
uses: actions/checkout@v4
- name: Annotate locations with typos
uses: codespell-project/codespell-problem-matcher@v1
- name: Codespell
uses: codespell-project/actions-codespell@v2
2 changes: 1 addition & 1 deletion cppguide.html
Original file line number Diff line number Diff line change
Expand Up @@ -1583,7 +1583,7 @@ <h3 id="Inheritance">Inheritance</h3>
inheritance".</p>

<p class="pros"></p>
<p>Implementation inheritance reduces code size by re-using
<p>Implementation inheritance reduces code size by reusing
the base class code as it specializes an existing type.
Because inheritance is a compile-time declaration, you
and the compiler can understand the operation and detect
Expand Down
2 changes: 1 addition & 1 deletion htmlcssguide.html
Original file line number Diff line number Diff line change
Expand Up @@ -173,7 +173,7 @@ <h4 id="Document_Type" class="numbered">Document Type</h4>
different doctype may be rendered in “limited-quirks mode”. These modes don’t
follow the widely-understood, widely-documented behavior for various core HTML
and CSS constructs, and are likely to cause subtle failures and
incompatibilities especially when re-using code that expects no-quirks mode.</p>
incompatibilities especially when reusing code that expects no-quirks mode.</p>

<h4 id="HTML_Validity" class="numbered">HTML Validity</h4>

Expand Down
2 changes: 1 addition & 1 deletion jsoncstyleguide.xml
Original file line number Diff line number Diff line change
Expand Up @@ -201,7 +201,7 @@ Avoid naming conflicts by choosing a new property name or versioning the API.
"data": {
"recipeName": "pizza",
"ingredients": "Some new property",
"recipeIngredients": ["tomatos", "cheese", "sausage"]
"recipeIngredients": ["tomatoes", "cheese", "sausage"]
}
}

Expand Down
2 changes: 1 addition & 1 deletion lispguide.xml
Original file line number Diff line number Diff line change
Expand Up @@ -2054,7 +2054,7 @@ Robert Brown
but sometimes, fixups are necessary to resolve forward references,
and intercession is allowed then.
MOP intercession is a great tool for interactive development,
and you may enjoy it while developping and debugging;
and you may enjoy it while developing and debugging;
but you should not use it in normal applications.
</p>
<p>
Expand Down
2 changes: 1 addition & 1 deletion pylintrc
Original file line number Diff line number Diff line change
Expand Up @@ -59,7 +59,7 @@ confidence=
# can either give multiple identifiers separated by comma (,) or put this
# option multiple times (only on the command line, not in the configuration
# file where it should appear only once).You can also use "--disable=all" to
# disable everything first and then reenable specific checks. For example, if
# disable everything first and then re-enable specific checks. For example, if
# you want to run only the similarities checker, you can use "--disable=all
# --enable=similarities". If you want to run only the classes checker, but have
# no Warning level messages displayed, use"--disable=all --enable=classes
Expand Down