Changeset 48511 in vbox
- Timestamp:
- Sep 17, 2013 7:27:55 PM (11 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/Config.kmk
r48479 r48511 1695 1695 # Note! Yes, --max-branchs is a typo, but not by me. 1696 1696 # 1697 # Note! Users of pylint 1.0 and later needs to define VBOX_WITH_PYLINT_V1_0 in 1698 # LocalConfig because they changed the output arguments in an 1699 # backwards incomaptible way. 1700 # 1697 1701 ifndef VBOX_PYLINT 1698 1702 VBOX_PYLINT := $(firstword $(which pylint-2.7) $(which pylint-2.6) $(which pylint2) $(which pylint)) … … 1704 1708 VBOX_WITH_PYLINT := 1 1705 1709 endif 1706 VBOX_PYLINT_FLAGS = --report=n --output-format=parseable --include-ids=y --persistent=n \ 1710 VBOX_PYLINT_FLAGS := --report=n \ 1711 $(if-expr defined(VBOX_WITH_PYLINT_V1_0)\ 1712 ,--msg-template='{path}:{line}: {msg_id}({obj}:{symbol}): {msg}' \ 1713 ,--output-format=msvs --include-ids=y) \ 1714 --persistent=n \ 1707 1715 --rcfile=$(if-expr "$(KBUILD_HOST)" == "win",nul,/dev/null) \ 1708 1716 --max-line-length=130 \ 1709 1717 --max-attributes=20 \ 1710 --max-branch s=50 \1718 --max-branch$(if-expr defined(VBOX_WITH_PYLINT_V1_0),e,)s=50 \ 1711 1719 --max-statements=100 \ 1712 1720 --max-returns=100 \
Note:
See TracChangeset
for help on using the changeset viewer.