Skip to content

Instantly share code, notes, and snippets.

View bluebird75's full-sized avatar

Philippe F bluebird75

View GitHub Profile
@bluebird75
bluebird75 / pylint-default.txt
Created May 11, 2021 16:56
pylint default output for sxtool
************* Module src.const
src\const.py:2:0: C0301: Line too long (101/100) (line-too-long)
src\const.py:1:0: C0114: Missing module docstring (missing-module-docstring)
************* Module src.data_table
src\data_table.py:2:0: C0301: Line too long (101/100) (line-too-long)
src\data_table.py:6:0: C0301: Line too long (112/100) (line-too-long)
src\data_table.py:118:0: C0301: Line too long (127/100) (line-too-long)
src\data_table.py:125:0: C0325: Unnecessary parens after 'return' keyword (superfluous-parens)
src\data_table.py:255:0: C0325: Unnecessary parens after 'return' keyword (superfluous-parens)
src\data_table.py:289:0: C0301: Line too long (109/100) (line-too-long)
@bluebird75
bluebird75 / pylint-2.txt
Created May 11, 2021 17:01
> pylint src --ignore src\gui -d C0103 -d C0116 -d C0301 -d C0303 -d I0101 -d E0611 -d I1101 -d E0401
************* Module src.const
src\const.py:1:0: C0114: Missing module docstring (missing-module-docstring)
************* Module src.data_table
src\data_table.py:125:0: C0325: Unnecessary parens after 'return' keyword (superfluous-parens)
src\data_table.py:255:0: C0325: Unnecessary parens after 'return' keyword (superfluous-parens)
src\data_table.py:404:0: C0305: Trailing newlines (trailing-newlines)
src\data_table.py:1:0: C0114: Missing module docstring (missing-module-docstring)
src\data_table.py:14:0: C0115: Missing class docstring (missing-class-docstring)
src\data_table.py:15:23: W0613: Unused argument 'table' (unused-argument)
src\data_table.py:14:0: R0903: Too few public methods (0/2) (too-few-public-methods)
[main] INFO profile include tests: None
[main] INFO profile exclude tests: None
[main] INFO cli include tests: None
[main] INFO cli exclude tests: None
[main] INFO running on Python 3.8.8
Run started:2021-05-15 16:49:52.455989
Test results:
>> Issue: [B101:assert_used] Use of assert detected. The enclosed code will be removed when compiling
to optimised byte code.