Scouterna / skojjt

Närvarorapportering för scouter
Apache License 2.0
14 stars 15 forks source link

pylintrc alignment of naming styles #115

Closed tobbee closed 4 years ago

tobbee commented 4 years ago

Updated naming-style to follow PEP8 since we are closer to that than to camelCase. Also suppressed missing-docstring.

Motivation:

PEP-8 recommends snake_case for everything but class-names which should be PascalCase. Our current .pylintrc says snake_case for everything including class-names.

Checking our code by running pylint *.py gave the following scores (higher is better)

Once this is accepted, one can start to improve stuff to get a higher pylint score.