setup.cfg 1 KB
Newer Older
zhanggzh's avatar
zhanggzh committed
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
[metadata]
license_file = LICENSE
description-file = README.md
version = attr: keras_cv.__version__

[tool:pytest]
filterwarnings =
    error
    ignore::DeprecationWarning
    ignore::ImportWarning
    ignore::RuntimeWarning
    ignore::PendingDeprecationWarning
    ignore::FutureWarning
[flake8]
max-line-length = 88
max-doc-length = 200
per-file-ignores =
    ./keras_cv/__init__.py:E402, F401
    ./examples/**/*:E402
    **/__init__.py:F401
ignore =
    # Conflicts with black
    E203
    # defaults flake8 ignores
    E121,E123,E126,E226,E24,E704,W503,W504
    # Function name should be lowercase
    N802
    # lowercase ... imported as non lowercase
    # Useful to ignore for "import keras.backend as K"
    N812
    # do not use bare 'except'
    E722
    # Escape characters check.
    # Conflict with pytest error message regex.
    W605
    # Ignore for tf.cond lambda
    E731

[isort]
profile = black
force_single_line = True
known_first_party = keras_cv,tests
default_section = THIRDPARTY
line_length = 88