forked from Lightning-Universe/lightning-transformers
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathsetup.cfg
More file actions
45 lines (37 loc) · 828 Bytes
/
setup.cfg
File metadata and controls
45 lines (37 loc) · 828 Bytes
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
38
39
40
41
42
43
44
45
[tool:pytest]
norecursedirs =
.git
dist
build
addopts =
--strict
--doctest-modules
--color=yes
[coverage:report]
exclude_lines =
pragma: no-cover
pass
[flake8]
max-line-length = 120
exclude = .tox,*.egg,build,temp
select = E,W,F
doctests = True
verbose = 2
# https://pep8.readthedocs.io/en/latest/intro.html#error-codes
format = pylint
ignore =
E731 # do not assign a lambda expression, use a def
W504 # line break occurred after a binary operator
E203
[metadata]
license_file = LICENSE
description-file = README.md
# TODO: enable when better supported
#[mypy]
#files = lightning_transformers, train.py
#disallow_untyped_defs = True
#ignore_missing_imports = True
#show_error_codes = True
#warn_redundant_casts = True
#warn_unused_configs = True
#warn_unused_ignores = True