Skip to content

Commit a4abc13

Browse files
committed
build: run ruff
1 parent 69d68a6 commit a4abc13

Some content is hidden

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

54 files changed

+37146
-46
lines changed

docs/.gitignore

+1
Original file line numberDiff line numberDiff line change
@@ -0,0 +1 @@
1+
/.quarto/

docs/_quarto.yml

+31
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,31 @@
1+
project:
2+
type: website
3+
4+
metadata-files:
5+
- _sidebar.yml
6+
7+
website:
8+
title: "My Documentation Site"
9+
navbar:
10+
left:
11+
- href: index.qmd
12+
text: Home
13+
- href: about.qmd
14+
text: About
15+
- href: walkthrough_aj_estimate.qmd
16+
text: Example
17+
18+
quartodoc:
19+
# the name used to import the package you want to create reference docs for
20+
package: rtichoke
21+
sidebar: "_sidebar.yml"
22+
sections:
23+
- title: Calibration
24+
desc: Functions to inspect docstrings.
25+
contents:
26+
- create_calibration_curve
27+
- title: Discrimination
28+
desc: Functions to inspect docstrings.
29+
contents:
30+
- create_gains_curve
31+
- plot_precision_recall_curve

docs/_sidebar.yml

+13
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,13 @@
1+
website:
2+
sidebar:
3+
- contents:
4+
- reference/index.qmd
5+
- contents:
6+
- reference/create_calibration_curve.qmd
7+
section: Calibration
8+
- contents:
9+
- reference/create_gains_curve.qmd
10+
- reference/plot_precision_recall_curve.qmd
11+
section: Discrimination
12+
id: reference
13+
- id: dummy-sidebar

0 commit comments

Comments
 (0)