Adafruit_Learning_System_Gu.../Multitasking_with_CircuitPython/.circuitpython.skip
Jeff Epler a426be25e1 Add 141 skip files
Each skip file has been populated with the pylint errors I actually got locally
when checking the file.
2021-08-11 14:02:31 -05:00

17 lines
2.9 KiB
Text

Multitasking_with_CircuitPython/code_blink_and_servo.py 94: Bad indentation. Found 20 spaces, expected 16 (bad-indentation)
Multitasking_with_CircuitPython/code_blink_and_servo.py 70: Comparison 'led['PIN'].value == False' should be 'led['PIN'].value is False' if checking for the singleton value False, or 'not led['PIN'].value' if testing for falsiness (singleton-comparison)
Multitasking_with_CircuitPython/code_blink_and_servo.py 74: Comparison 'led['PIN'].value == True' should be 'led['PIN'].value is True' if checking for the singleton value True, or 'led['PIN'].value' if testing for truthiness (singleton-comparison)
Multitasking_with_CircuitPython/code_blink_and_servo.py 8: standard import "import time" should be placed before "import board" (wrong-import-order)
Multitasking_with_CircuitPython/code_multiple_leds.py 46: Comparison 'led['PIN'].value == False' should be 'led['PIN'].value is False' if checking for the singleton value False, or 'not led['PIN'].value' if testing for falsiness (singleton-comparison)
Multitasking_with_CircuitPython/code_multiple_leds.py 50: Comparison 'led['PIN'].value == True' should be 'led['PIN'].value is True' if checking for the singleton value True, or 'led['PIN'].value' if testing for truthiness (singleton-comparison)
Multitasking_with_CircuitPython/code_multiple_leds.py 8: standard import "import time" should be placed before "import board" (wrong-import-order)
Multitasking_with_CircuitPython/code_servo_without_sleep.py 47: Bad indentation. Found 20 spaces, expected 16 (bad-indentation)
Multitasking_with_CircuitPython/code_servo_without_sleep.py 7: Unused import digitalio (unused-import)
Multitasking_with_CircuitPython/code_servo_without_sleep.py 8: standard import "import time" should be placed before "import board" (wrong-import-order)
Multitasking_with_CircuitPython/code_all_together.py 134: Bad indentation. Found 20 spaces, expected 16 (bad-indentation)
Multitasking_with_CircuitPython/code_all_together.py 111: Comparison 'led['PIN'].value == False' should be 'led['PIN'].value is False' if checking for the singleton value False, or 'not led['PIN'].value' if testing for falsiness (singleton-comparison)
Multitasking_with_CircuitPython/code_all_together.py 115: Comparison 'led['PIN'].value == True' should be 'led['PIN'].value is True' if checking for the singleton value True, or 'led['PIN'].value' if testing for truthiness (singleton-comparison)
Multitasking_with_CircuitPython/code_all_together.py 8: standard import "import time" should be placed before "import board" (wrong-import-order)
Multitasking_with_CircuitPython/code_multiple_leds_cpb.py 48: Consider iterating the dictionary directly instead of calling .keys() (consider-iterating-dictionary)
Multitasking_with_CircuitPython/code_multiple_leds_cpb.py 7: Unused import digitalio (unused-import)
Multitasking_with_CircuitPython/code_multiple_leds_cpb.py 8: Unused import board (unused-import)