Skip to content

Commit 1a8a3a0

Browse files
author
Peter Braun
committed
cicd add untracked config files
1 parent 624950d commit 1a8a3a0

File tree

4 files changed

+3276
-0
lines changed

4 files changed

+3276
-0
lines changed

.flake8

Lines changed: 17 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,17 @@
1+
[flake8]
2+
ignore = E203, W503, W505, F722, F811
3+
exclude =
4+
.git,
5+
__pycache__,
6+
.pytest_cache,
7+
build,
8+
dist,
9+
info,
10+
logs,
11+
pid,
12+
.vscode,
13+
.venv,
14+
.secop-ophyd,
15+
cfg/*,
16+
docs,
17+
max-line-length = 88

.isort.cfg

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,3 @@
1+
[settings]
2+
profile=black
3+
line_length = 88

.mypy.ini

Lines changed: 8 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,8 @@
1+
[mypy]
2+
# Ignore missing stubs in imported modules
3+
ignore_missing_imports = true
4+
#plugins = ["numpy.typing.mypy_plugin"]
5+
check_untyped_defs = true
6+
exclude = [
7+
'^cfg'
8+
]

0 commit comments

Comments
 (0)