Skip to content

Commit 6aadfe4

Browse files
author
Alex Lee
committed
Updating
1 parent 737e265 commit 6aadfe4

File tree

5 files changed

+9
-17
lines changed

5 files changed

+9
-17
lines changed

.codespell-whitelist.txt

Lines changed: 0 additions & 2 deletions
This file was deleted.

.pre-commit-config.yaml

Lines changed: 0 additions & 11 deletions
Original file line numberDiff line numberDiff line change
@@ -45,17 +45,6 @@ repos:
4545
rev: v2.3.0
4646
hooks:
4747
- id: codespell
48-
args: [
49-
"-S",
50-
"*.csv",
51-
"-S",
52-
"*.ipynb",
53-
"-S",
54-
"pyproject.toml",
55-
"--ignore-words=.codespell-whitelist.txt",
56-
# Write changes in place
57-
"-w",
58-
]
5948
additional_dependencies:
6049
# Support pyproject.toml configuration
6150
- tomli
Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,4 @@
1+
nD
2+
CACE
3+
compliers
4+
complier

docs/source/knowledgebase/glossary.rst

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -48,7 +48,7 @@ Glossary
4848

4949
Local Average Treatment effect
5050
LATE
51-
Also known asthe compiler average causal effect (CACE), is the effect of a treatment for subjects who comply with the experimental treatment assigned to their sample group. It is the quantity we're estimating in IV designs.
51+
Also known as the complier average causal effect (CACE), is the effect of a treatment for subjects who comply with the experimental treatment assigned to their sample group. It is the quantity we're estimating in IV designs.
5252

5353
Non-equivalent group designs
5454
NEGD

pyproject.toml

Lines changed: 4 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -49,7 +49,7 @@ dependencies = [
4949
#
5050
# Similar to `dependencies` above, these must be valid existing projects.
5151
[project.optional-dependencies]
52-
dev = ["pathlib", "pre-commit", "twine", "interrogate"]
52+
dev = ["pathlib", "pre-commit", "twine", "interrogate", "codespell"]
5353
docs = [
5454
"ipykernel",
5555
"daft",
@@ -123,5 +123,6 @@ extend-select = [
123123
"I", # isort
124124
]
125125

126-
[tools.codespell]
127-
ignore-words = ".codespell/ignore_words.txt"
126+
[tool.codespell]
127+
ignore-words = "./docs/source/.codespell/codespell-whitelist.txt"
128+
skip = "*.ipynb,*.csv,pyproject.toml,docs/source/.codespell/codespell-whitelist.txt"

0 commit comments

Comments
 (0)