Skip to content

Commit

Permalink
Updating
Browse files Browse the repository at this point in the history
  • Loading branch information
Alex Lee committed Sep 13, 2024
1 parent 737e265 commit 6aadfe4
Show file tree
Hide file tree
Showing 5 changed files with 9 additions and 17 deletions.
2 changes: 0 additions & 2 deletions .codespell-whitelist.txt

This file was deleted.

11 changes: 0 additions & 11 deletions .pre-commit-config.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -45,17 +45,6 @@ repos:
rev: v2.3.0
hooks:
- id: codespell
args: [
"-S",
"*.csv",
"-S",
"*.ipynb",
"-S",
"pyproject.toml",
"--ignore-words=.codespell-whitelist.txt",
# Write changes in place
"-w",
]
additional_dependencies:
# Support pyproject.toml configuration
- tomli
4 changes: 4 additions & 0 deletions docs/source/.codespell/codespell-whitelist.txt
Original file line number Diff line number Diff line change
@@ -0,0 +1,4 @@
nD
CACE
compliers
complier
2 changes: 1 addition & 1 deletion docs/source/knowledgebase/glossary.rst
Original file line number Diff line number Diff line change
Expand Up @@ -48,7 +48,7 @@ Glossary

Local Average Treatment effect
LATE
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.
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.

Non-equivalent group designs
NEGD
Expand Down
7 changes: 4 additions & 3 deletions pyproject.toml
Original file line number Diff line number Diff line change
Expand Up @@ -49,7 +49,7 @@ dependencies = [
#
# Similar to `dependencies` above, these must be valid existing projects.
[project.optional-dependencies]
dev = ["pathlib", "pre-commit", "twine", "interrogate"]
dev = ["pathlib", "pre-commit", "twine", "interrogate", "codespell"]
docs = [
"ipykernel",
"daft",
Expand Down Expand Up @@ -123,5 +123,6 @@ extend-select = [
"I", # isort
]

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

0 comments on commit 6aadfe4

Please sign in to comment.