-
Notifications
You must be signed in to change notification settings - Fork 5
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
✨ Add configuration for plot functions (#288)
For details on the 58 (!!!) commits that make up this squashed commit, see #288. #288 The main goal was to reduce repetitive boilerplate code (i.e. when changing plot labels). High level change summary * ✨ Add configuration for plot functions * ⬆️🧰 Update tooling * 🧰📚 Change notebook doc parser to myst-nb (this allows support for mermaid) Co-authored-by: Joris Snellenburg <[email protected]>
- Loading branch information
Showing
50 changed files
with
3,879 additions
and
85 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,7 +1,18 @@ | ||
#:schema https://json.schemastore.org/ruff.json | ||
extend = ".ruff.toml" | ||
extend-ignore = ["D", "E402", "F404"] | ||
|
||
[isort] | ||
extend-exclude = [ | ||
"docs/conf.py", | ||
] | ||
|
||
[lint] | ||
extend-ignore = [ | ||
"D", | ||
"E402", | ||
"F404", | ||
"I002", # from __future__ import annotations | ||
] | ||
|
||
[lint.isort] | ||
required-imports = [] | ||
force-single-line = false |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,4 @@ | ||
plotting: | ||
general: | ||
axis_label_override: | ||
time: "Time (fs)" |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,18 @@ | ||
plotting: | ||
general: | ||
default_args_override: | ||
linlog: true | ||
use_svd_number: true | ||
linthresh: 2 | ||
axis_label_override: | ||
time: "Time (ps)" | ||
spectral: "Wavelength (nm)" | ||
data_left_singular_vectors: "" | ||
data_singular_values: "Singular Value (a.u.)" | ||
data_right_singular_vectors: "" | ||
plot_svd: | ||
default_args_override: | ||
use_svd_number: false | ||
plot_overview: | ||
default_args_override: | ||
show_data: True |
Oops, something went wrong.