Posts in category changes

Quality improving slowly...

As I primarily code new features and bugfixes, I tend to do QA changes when I can. This makes the global code quality improve slowly:

olive@Gany ~/licorn @ find . -type f -name '*.py' | xargs pylint

[...]

Global evaluation
-----------------
Your code has been rated at 3.75/10 (previous run: -1.90/10)

Locally, the quality can be much better. There are files where I spent time to experiment with pylint remarks, and this shows:

pylint core/internals/users.py

[...]

Global evaluation
-----------------
Your code has been rated at 8.32/10 (previous run: 8.17/10)

And files where I already modified some portions of code, but not all (since I don't have time):

pylint core/internals/configuration.py

[...]

Global evaluation
-----------------
Your code has been rated at 6.01/10 (previous run: 3.19/10)

Anyway, major QA work will occur: we have a dedicated milestone for this !