-
-
Notifications
You must be signed in to change notification settings - Fork 72
Expand file tree
/
Copy pathsetup.cfg
More file actions
37 lines (34 loc) · 903 Bytes
/
setup.cfg
File metadata and controls
37 lines (34 loc) · 903 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
[metadata]
name=Forged Alliance Forever Server
description=Lobby/game server project
license=GPLv3
url=http://www.faforever.com
[options]
include_package_data=True
packages=find:
[isort]
multi_line_output=3
known_first_party=server,tests,integration_tests
default_section=THIRDPARTY
[flake8]
exclude=server/db/models.py
ignore=
# E226: missing whitespace around arithmetic operator
E226,
# E501: line too long
E501,
# E704: multiple statements on one line (def)
E704,
# F821: undefined name
F821,
# W503: line break before binary operator
W503,
# W504: line break after binary operator
W504
per-file-ignores=
# E241: multiple spaces after ':'
server/gameconnection.py: E241
# F403: 'from x import *' used; unable to detect undefined names
# F405: 'x' may be undefined, or defined from star imports
server/stats/game_stats_service.py: F403, F405
inline-quotes=double