checkpackagelib_config.py 510 B

12345678910
  1. # See support/scripts/check-package.txt before editing this file.
  2. # Kconfig generates errors if someone introduces a typo like "boool" instead of
  3. # "bool", so below check functions don't need to check for things already
  4. # checked by running "make menuconfig".
  5. # Notice: ignore 'imported but unused' from pyflakes for check functions.
  6. from checkpackagelib import ConsecutiveEmptyLines
  7. from checkpackagelib import EmptyLastLine
  8. from checkpackagelib import NewlineAtEof
  9. from checkpackagelib import TrailingSpace