forked from BSB-WS23/mpstubs
17 lines
779 B
INI
17 lines
779 B
INI
# StuBS Coding Style Checker
|
|
#
|
|
# Wir orientieren uns grob an den Google C++ Style Guide ( http://google.github.io/styleguide/cppguide.html )
|
|
# mit primär folgenden Änderungen/Anpassungen:
|
|
#
|
|
# - Tabs statt Leerzeichen. Spart Bytes ;)
|
|
# - Zeilenlänge ist 120
|
|
# - Keine Angaben zum Copyright
|
|
# - Aufgrund des Aufgabenbuildsystems sind neue / leere Zeilen leider nicht immer vermeidbar
|
|
#
|
|
# Zum Prüfen empfiehlt sich beispielsweise das Pythonscript CPPLINT.py ( https://github.com/cpplint/cpplint )
|
|
# welches mit dieser Konfigurationsdatei arbeiten kann.
|
|
#
|
|
set noparent
|
|
filter=-whitespace/tab,-legal/copyright,-runtime/int,-runtime/threadsafe_fn,-readability/todo,-build/include_subdir,-runtime/references,-build/include_what_you_use,-whitespace/blank_line
|
|
linelength=120
|