pylintrc 572 B

12345678910111213141516
  1. [MESSAGES CONTROL]
  2. # Disable all to choose the Tests one by one
  3. disable=all
  4. # Tests
  5. enable=bad-indentation, # Used when an unexpected number of indentation’s tabulations or spaces has been found.
  6. mixed-indentation, # Used when there are some mixed tabs and spaces in a module.
  7. unnecessary-semicolon, # Used when a statement is ended by a semi-colon (”;”), which isn’t necessary.
  8. unused-variable # Used when a variable is defined but not used. (Use _var to ignore var).
  9. [REPORTS]
  10. # Activate the evaluation score.
  11. score=no