Skip to content

Commit 39fc9a6

Browse files
committed
build: add spell check (#305)
1 parent 9f59e66 commit 39fc9a6

11 files changed

+29
-17
lines changed

.github/workflows/validate.yaml

+3
Original file line numberDiff line numberDiff line change
@@ -45,3 +45,6 @@ jobs:
4545

4646
- name: Lint Markdown files
4747
run: make lint
48+
49+
- name: Spell check
50+
run: make spellcheck

Makefile

+8-3
Original file line numberDiff line numberDiff line change
@@ -16,16 +16,21 @@ install:
1616

1717
test:
1818
@${MAKE} lint
19+
@${MAKE} spellcheck
1920
@${MAKE} test-build
2021

21-
test-build:
22-
@${MAKE} dummy SPHINXOPTS="--quiet --fail-on-warning"
23-
2422
lint: # requires Node and NPM to be installed
2523
@npx --yes markdownlint-cli "**/*.md"
2624

25+
spellcheck: # check for spelling errors
26+
@codespell
27+
28+
test-build:
29+
@${MAKE} dummy SPHINXOPTS="--quiet --fail-on-warning"
30+
2731
format: # requires Node and NPM to be installed
2832
@npx --yes markdownlint-cli --fix "**/*.md"
33+
@codespell --write-changes
2934

3035
# Serve the documentation in dev mode.
3136
dev:

pyproject.toml

+3
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,3 @@
1+
[tool.codespell]
2+
ignore-words-list = [ "Calculs", "moteur", "ressource", "ALS" ]
3+
skip = "*.js,./build"

requirements.txt

+1
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,5 @@
11
--editable git+https://github.com/openfisca/openfisca-core.git@master#egg=OpenFisca-Core[dev]
2+
codespell==2.3.0
23
guzzle_sphinx_theme==0.7.11
34
myst-parser==3.0.1
45
sphinx-autobuild==2024.4.16

source/coding-the-legislation/20_input_variables.md

+2-2
Original file line numberDiff line numberDiff line change
@@ -113,7 +113,7 @@ class housing_tax(Variable):
113113
def formula(household, period, legislation):
114114
accommodation_size = household('accomodation_size', period)
115115
housing_occupancy_status = household('housing_occupancy_status', period)
116-
HousingOccupancyStatus = housing_occupancy_status.possible_values # "Import" the enum type. Careful: do not use python imports accross variables files: comparisons would not work!
116+
HousingOccupancyStatus = housing_occupancy_status.possible_values # "Import" the enum type. Careful: do not use python imports across variables files: comparisons would not work!
117117
tenant = (housing_occupancy_status == HousingOccupancyStatus.tenant)
118118
owner = (housing_occupancy_status == HousingOccupancyStatus.owner)
119119

@@ -124,7 +124,7 @@ class housing_tax(Variable):
124124
You can now test the formula in a YAML test:
125125

126126
```yaml
127-
- name: Household with free lodger status living in a 100 sq.meters accomodation
127+
- name: Household with free lodger status living in a 100 sq.meters accommodation
128128
period: 2017
129129
input:
130130
accomodation_size:

source/coding-the-legislation/40_legislation_evolutions.md

+1-1
Original file line numberDiff line numberDiff line change
@@ -56,7 +56,7 @@ After this change, in a formula:
5656

5757
## Formula evolution
5858

59-
Some fiscal or benefit mechanism significantly evolve over time and call for a change in the formula that computes them. In this case, a simple parameter adjustement is not enough.
59+
Some fiscal or benefit mechanism significantly evolve over time and call for a change in the formula that computes them. In this case, a simple parameter adjustment is not enough.
6060

6161
For instance, let's assume that from the 1st of Jan. 2017, the `flat_tax_on_salary` is not applied anymore on the first `1000` earned by a person.
6262

source/coding-the-legislation/bootstrapping_a_new_country_package.md

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
# Bootstraping a new country package
1+
# Bootstrapping a new country package
22

33
If you want to use OpenFisca to run simulations about your own country's legislation, our [country package template](https://github.com/openfisca/country-template/) will provide you all the instructions and boilerplate code you need to quickly get something working.
44

source/coding-the-legislation/legislation_parameters.md

+6-6
Original file line numberDiff line numberDiff line change
@@ -166,7 +166,7 @@ Sometimes, the value of a parameter depends on a variable (e.g. a housing benefi
166166

167167
To be more specific, let's assume that:
168168

169-
* Households who rent their accomodation can get a `housing_benefit`
169+
* Households who rent their accommodation can get a `housing_benefit`
170170
* The amount of this benefit depends on which `zone` the household lives in. The `zone` can take only three values: `zone_1`, `zone_2` or `zone_3`.
171171
* The amount also depends on the composition of the household.
172172

@@ -223,7 +223,7 @@ zone_3:
223223
value: 50
224224
```
225225

226-
Then the formula calculting `housing_benefit` can be implemented with:
226+
Then the formula calculating `housing_benefit` can be implemented with:
227227

228228
```py
229229
def formula(household, period, parameters):
@@ -240,15 +240,15 @@ def formula(household, period, parameters):
240240

241241
If there are many households in your simulation, this parameter will be **vectorial**: it may have a different value for each household of your entity.
242242

243-
To be able to use this notation, all the children node of the parameter node `housing_benefit` must be **homogenous**. In the previous example, `housing_benefit.zone_1`, `housing_benefit.zone_2`, `housing_benefit.zone_3` are homogenous, as they have the same subnodes.
243+
To be able to use this notation, all the children node of the parameter node `housing_benefit` must be **homogeneous**. In the previous example, `housing_benefit.zone_1`, `housing_benefit.zone_2`, `housing_benefit.zone_3` are homogeneous, as they have the same subnodes.
244244

245-
However, let's imagine that `housing_benefit.yaml` had another subnode named `coeff_furnished`, which described a coefficient to apply to the benefit is the accomodation is rented furnished:
245+
However, let's imagine that `housing_benefit.yaml` had another subnode named `coeff_furnished`, which described a coefficient to apply to the benefit is the accommodation is rented furnished:
246246

247247
`housing_benefit.yaml` content:
248248

249249
```yaml
250250
coeff_furnished:
251-
description: "Coefficient to apply if the accomodation is rented furnished"
251+
description: "Coefficient to apply if the accommodation is rented furnished"
252252
values:
253253
2015-01-01:
254254
value: 0.75
@@ -269,7 +269,7 @@ To solve this issue, the good practice would be to create an intermediate node `
269269

270270
```yaml
271271
coeff_furnished:
272-
description: "Coefficient to apply if the accomodation is rented furnished"
272+
description: "Coefficient to apply if the accommodation is rented furnished"
273273
values:
274274
2015-01-01:
275275
value: 0.75

source/conf.py

+2-2
Original file line numberDiff line numberDiff line change
@@ -59,10 +59,10 @@
5959

6060
github_doc_root = 'https://github.com/openfisca/openfisca-doc/tree/main/'
6161

62-
# 'config-cache' supresses: Warning cannot cache unpickable configuration value: 'recommonmark_config' (because it contains a function, class, or module object)
62+
# 'config-cache' suppresses: Warning cannot cache unpickable configuration value: 'recommonmark_config' (because it contains a function, class, or module object)
6363
suppress_warnings = ['image.nonlocal_uri','config.cache']
6464

65-
# Supresses warning "more than one target found for cross-reference" affecting:
65+
# Suppresses warning "more than one target found for cross-reference" affecting:
6666
# - openfisca_core.periods.Instant
6767
# - openfisca_core.simulations.simulation_builder.SimulationBuilder -> TaxBenefitSystem
6868
autodoc_default_options = {

source/installation/access-countrys-source-code.md

+1-1
Original file line numberDiff line numberDiff line change
@@ -14,7 +14,7 @@ The `OpenFisca-Country-Template` installation instructions are in its `README` [
1414

1515
Generally when making changes to legislation, there is a need to test the changes with a situation that works with the country's tax and benefit system.
1616

17-
Sometimes, these situations can be quite complicated to model. Instead of rewriting them everytime, they can be packaged in different formats:
17+
Sometimes, these situations can be quite complicated to model. Instead of rewriting them every time, they can be packaged in different formats:
1818

1919
* As [YAML tests](./../coding-the-legislation/writing_yaml_tests.md) when the expected output result should be registered.
2020
* As [JSON requests](./../openfisca-web-api/input-output-data.md#describing-the-situation) when the output isn't being tested. Refer to [these examples](https://github.com/openfisca/country-template/tree/main/openfisca_country_template/situation_examples) in the `OpenFisca-Country-Template` repository. These can be adapted as requests to be sent to the OpenFisca web API.

source/openfisca-python-api/openfisca_serve.rst

+1-1
Original file line numberDiff line numberDiff line change
@@ -69,7 +69,7 @@ You can setup ``openfisca serve`` using a configuration file. Be careful as para
6969
7070
Using gunicorn directly
7171
^^^^^^^^^^^^^^^^^^^^^^^
72-
If for any reason you nedd to run ``gunicorn`` directly, you can. See this example of ``gunicorn`` application:
72+
If for any reason you need to run ``gunicorn`` directly, you can. See this example of ``gunicorn`` application:
7373

7474
**app.py:**
7575

0 commit comments

Comments
 (0)