Skip to content

Commit

Permalink
Merge pull request #226 from yarikoptic/enh-codespell
Browse files Browse the repository at this point in the history
Add codespell to detect new typos and fix existing ones (even in prior versions since why not?)
  • Loading branch information
joshmoore committed Feb 12, 2024
2 parents 4428c97 + 2dd4d76 commit 4535706
Show file tree
Hide file tree
Showing 8 changed files with 38 additions and 9 deletions.
6 changes: 6 additions & 0 deletions .codespellrc
Original file line number Diff line number Diff line change
@@ -0,0 +1,6 @@
[codespell]
# Ref: https://github.com/codespell-project/codespell#using-a-config-file
skip = .git,.codespellrc
check-hidden = true
# ignore-regex =
# ignore-words-list =
23 changes: 23 additions & 0 deletions .github/workflows/codespell.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,23 @@
# Codespell configuration is within .codespellrc
---
name: Codespell

on:
push:
branches: [main]
pull_request:
branches: [main]

permissions:
contents: read

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

steps:
- name: Checkout
uses: actions/checkout@v4
- name: Codespell
uses: codespell-project/actions-codespell@v2
2 changes: 1 addition & 1 deletion 0.2/index.bs
Original file line number Diff line number Diff line change
Expand Up @@ -236,7 +236,7 @@ It SHOULD contain the field "metadata", which contains a dictionary with additio
],
"type": "gaussian",
"metadata": { # the fields in metadata depend on the downscaling implementation
"method": "skimage.transform.pyramid_gaussian", # here, the paramters passed to the skimage function are given
"method": "skimage.transform.pyramid_gaussian", # here, the parameters passed to the skimage function are given
"version": "0.16.1",
"args": "[true]",
"kwargs": {"multichannel": true}
Expand Down
2 changes: 1 addition & 1 deletion 0.3/index.bs
Original file line number Diff line number Diff line change
Expand Up @@ -249,7 +249,7 @@ It SHOULD contain the field "metadata", which contains a dictionary with additio
],
"type": "gaussian",
"metadata": { # the fields in metadata depend on the downscaling implementation
"method": "skimage.transform.pyramid_gaussian", # here, the paramters passed to the skimage function are given
"method": "skimage.transform.pyramid_gaussian", # here, the parameters passed to the skimage function are given
"version": "0.16.1",
"args": "[true]",
"kwargs": {"multichannel": true}
Expand Down
6 changes: 3 additions & 3 deletions 0.4/index.bs
Original file line number Diff line number Diff line change
Expand Up @@ -107,7 +107,7 @@ be optional (MAY). Examples of transitional metadata include custom additions by
implementations that are later submitted as a formal specification. (See [[#bf2raw]])
</p>

Some of the JSON examples in this document include commments. However, these are only for
Some of the JSON examples in this document include comments. However, these are only for
clarity purposes and comments MUST NOT be included in JSON objects.

On-disk (or in-cloud) layout {#on-disk}
Expand Down Expand Up @@ -544,15 +544,15 @@ other `name` in the `rows` list. Care SHOULD be taken to avoid collisions on
case-insensitive filesystems (e.g. avoid using both `Aa` and `aA`).

The `plate` dictionary SHOULD contain a `version` key whose value MUST be a string specifying the
version of the plate specificaton.
version of the plate specification.

The `plate` dictionary MUST contain a `wells` key whose value MUST be a list of JSON objects
defining the wells of the plate. Each well object MUST contain a `path` key whose value MUST
be a string specifying the path to the well subgroup. The `path` MUST consist of a `name` in
the `rows` list, a file separator (`/`), and a `name` from the `columns` list, in that order.
The `path` MUST NOT contain additional leading or trailing directories.
Each well object MUST contain both a `rowIndex` key whose value MUST be an integer identifying
the index into the `rows` list and a `columnIndex` key whose value MUST be an integer indentifying
the index into the `rows` list and a `columnIndex` key whose value MUST be an integer identifying
the index into the `columns` list. `rowIndex` and `columnIndex` MUST be 0-based. The
`rowIndex`, `columnIndex`, and `path` MUST all refer to the same row/column pair.

Expand Down
2 changes: 1 addition & 1 deletion 0.4/tests/test_validation.py
Original file line number Diff line number Diff line change
Expand Up @@ -35,7 +35,7 @@ def pytest_generate_tests(metafunc):
Generates tests for the examples/ as well as tests/ subdirectories.
Examples:
These tests evalute all of the files under the examples/ directory
These tests evaluate all of the files under the examples/ directory
using the configuration in the provided config file in order detect
what should be run. It is assumed that all files are valid and complete
so that they can be wholly included into the specification. The
Expand Down
4 changes: 2 additions & 2 deletions latest/index.bs
Original file line number Diff line number Diff line change
Expand Up @@ -55,7 +55,7 @@ be optional (MAY). Examples of transitional metadata include custom additions by
implementations that are later submitted as a formal specification. (See [[#bf2raw]])
</p>

Some of the JSON examples in this document include commments. However, these are only for
Some of the JSON examples in this document include comments. However, these are only for
clarity purposes and comments MUST NOT be included in JSON objects.

On-disk (or in-cloud) layout {#on-disk}
Expand Down Expand Up @@ -501,7 +501,7 @@ be a string specifying the path to the well subgroup. The `path` MUST consist of
the `rows` list, a file separator (`/`), and a `name` from the `columns` list, in that order.
The `path` MUST NOT contain additional leading or trailing directories.
Each well object MUST contain both a `rowIndex` key whose value MUST be an integer identifying
the index into the `rows` list and a `columnIndex` key whose value MUST be an integer indentifying
the index into the `rows` list and a `columnIndex` key whose value MUST be an integer identifying
the index into the `columns` list. `rowIndex` and `columnIndex` MUST be 0-based. The
`rowIndex`, `columnIndex`, and `path` MUST all refer to the same row/column pair.

Expand Down
2 changes: 1 addition & 1 deletion latest/tests/test_validation.py
Original file line number Diff line number Diff line change
Expand Up @@ -35,7 +35,7 @@ def pytest_generate_tests(metafunc):
Generates tests for the examples/ as well as tests/ subdirectories.
Examples:
These tests evalute all of the files under the examples/ directory
These tests evaluate all of the files under the examples/ directory
using the configuration in the provided config file in order detect
what should be run. It is assumed that all files are valid and complete
so that they can be wholly included into the specification. The
Expand Down

0 comments on commit 4535706

Please sign in to comment.