Skip to content

Commit 4c0b0ee

Browse files
committed
Large reorganisation of documentation, along with multiple fixes of internal references
1 parent d5c6e9f commit 4c0b0ee

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

51 files changed

+928
-747
lines changed

.cspell/library_terms.txt

+8-1
Original file line numberDiff line numberDiff line change
@@ -19,6 +19,7 @@ bmatrix
1919
booktitle
2020
bysource
2121
cmap
22+
dispname
2223
dollarmath
2324
dtype
2425
dtypes
@@ -37,11 +38,13 @@ intersphinx
3738
isort
3839
issubdtype
3940
jacrev
40-
JAX's
41+
jax
42+
jaxlib
4143
jaxopt
4244
jumanjihouse
4345
linalg
4446
linkcheck
47+
literalinclude
4548
lstsq
4649
mathbb
4750
mathbf
@@ -63,6 +66,7 @@ OSQP
6366
params_ineq
6467
pinv
6568
pvalue
69+
pybtex
6670
pydocstyle
6771
pylint
6872
pylintrc
@@ -84,6 +88,7 @@ setuptools
8488
sklearn
8589
softplus
8690
sphinxcontrib
91+
sphobjinv
8792
texttt
8893
toctree
8994
tomli
@@ -92,7 +97,9 @@ triu
9297
typehints
9398
undoc
9499
unflatten
100+
unsrt
95101
viewcode
96102
vmap
103+
writebytes
97104
xlabel
98105
ylabel

.gitignore

+2
Original file line numberDiff line numberDiff line change
@@ -50,6 +50,7 @@ coverage.xml
5050
.hypothesis/
5151
.pytest_cache/
5252
cover/
53+
.scannerwork
5354

5455
# Translations
5556
*.mo
@@ -70,6 +71,7 @@ instance/
7071

7172
# Sphinx documentation
7273
docs/_build/
74+
*.inv
7375

7476
# PyBuilder
7577
.pybuilder/

.pre-commit-config.yaml

+3-1
Original file line numberDiff line numberDiff line change
@@ -86,7 +86,8 @@ repos:
8686
exclude: |
8787
(?x)^(
8888
tests|
89-
documentation/source/conf.py
89+
documentation/source/conf.py|
90+
documentation/source/snippets
9091
)
9192
- repo: https://github.com/streetsidesoftware/cspell-cli
9293
rev: v8.3.0
@@ -127,3 +128,4 @@ repos:
127128
- "-rn" # Only display messages
128129
- "-sn" # Don't display the score
129130
- "--rcfile=.pylintrc" # pylint configuration file
131+
exclude: "documentation/source/snippets"

.pylintrc

+1
Original file line numberDiff line numberDiff line change
@@ -424,6 +424,7 @@ confidence=HIGH,
424424
disable=too-many-lines,
425425
too-many-arguments,
426426
too-many-instance-attributes,
427+
import-error,
427428

428429

429430

0 commit comments

Comments
 (0)