๐Ÿ“ฆ agentscope-ai / OpenJudge

๐Ÿ“„ .flake8 ยท 29 lines
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[flake8]
select = C,E,F,W
exclude =
    ./build,
ignore =
    # Whitespace before โ€˜,โ€™, โ€˜;โ€™, or โ€˜:โ€™, it is not compatible with black
    E203,
    # Module level import not at top of file
    E402,
    # Line too long (82 > 79 characters)
    E501,
    # Do not compare types, use `isinstance()`
    E721,
    # Do not use bare except, specify exception instead
    E722,
    # Do not assign a lambda expression, use a def
    E731,
    # Do not use variables named โ€˜lโ€™, โ€˜Oโ€™, or โ€˜Iโ€™
    E741,
    # `name` may be undefined, or defined from star imports: `module`
    F405,
    # Local variable name is assigned to but never used
    F841,
    # Line break before binary operator, it is not compatible with black
    W503
per-file-ignores =
    # Ignore unused imports in __init__.py
    __init__.py: F401, F403
    tests/*: F401, F403, F541