-
Notifications
You must be signed in to change notification settings - Fork 34
Expand file tree
/
Copy pathty.toml
More file actions
37 lines (36 loc) · 1.24 KB
/
ty.toml
File metadata and controls
37 lines (36 loc) · 1.24 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
[src]
# Ignore files that haven't been typed yet.
# As files are typed, they can be removed from this list.
# DO NOT ADD NEW FILES TO THIS LIST, NEW FILES SHOULD BE TYPED.
exclude = [
"notebooks/demo_data_driven.ipynb",
"notebooks/demo_data_driven.py",
"notebooks/demo_fcsa.ipynb",
"notebooks/demo_fcsa.py",
"notebooks/demo_problem.ipynb",
"notebooks/demo_problem.py",
"scripts/list_directories.py",
"scripts/run_experiment.py",
"simopt/bootstrap.py",
"simopt/directory.py",
"simopt/experiment/post_normalize.py",
"simopt/experiment_base.py",
"simopt/gui/data_farming_window.py",
"simopt/gui/new_experiment_window.py",
"simopt/gui/plot_window.py",
"simopt/model.py",
"simopt/models/ermexample.py",
"simopt/plot_type.py",
"simopt/plots",
"simopt/problem.py",
"simopt/solvers/astrodf.py",
"simopt/solvers/fcsa.py",
"simopt/utils.py",
"test/test_experiments.py",
]
# See https://docs.astral.sh/ty/reference/rules/ for Rules documentation.
# Rule options are ["error", "warn", "ignore"]
[rules]
division-by-zero = "warn" # Default is "ignore"
possibly-unresolved-reference = "warn" # Default is "ignore"
unused-ignore-comment = "warn" # Default is "ignore"