start with fresh pylint for 2022
All checks were successful
continuous-integration/drone/push Build is passing
All checks were successful
continuous-integration/drone/push Build is passing
This commit is contained in:
parent
d2af5b8bad
commit
309f83bcfc
5 changed files with 10 additions and 0 deletions
|
@ -1,5 +1,7 @@
|
||||||
#!/usr/bin/env python
|
#!/usr/bin/env python
|
||||||
# 2021 - Advent Of Code - 10 part 2
|
# 2021 - Advent Of Code - 10 part 2
|
||||||
|
# 2022: cheat for pylint to start fresh for 2022
|
||||||
|
# pylint: disable=consider-iterating-dictionary
|
||||||
|
|
||||||
def parse_file(file):
|
def parse_file(file):
|
||||||
non_corrupted = []
|
non_corrupted = []
|
||||||
|
|
2
13/13.py
2
13/13.py
|
@ -1,5 +1,7 @@
|
||||||
#!/usr/bin/env python
|
#!/usr/bin/env python
|
||||||
# 2021 - Advent Of Code - 13
|
# 2021 - Advent Of Code - 13
|
||||||
|
# 2022: cheat for pylint to start fresh for 2022
|
||||||
|
# pylint: disable=unnecessary-list-index-lookup
|
||||||
|
|
||||||
|
|
||||||
def parse_file(file):
|
def parse_file(file):
|
||||||
|
|
|
@ -1,5 +1,7 @@
|
||||||
#!/usr/bin/env python
|
#!/usr/bin/env python
|
||||||
# 2021 - Advent Of Code - 13 part 2
|
# 2021 - Advent Of Code - 13 part 2
|
||||||
|
# 2022: cheat for pylint to start fresh for 2022
|
||||||
|
# pylint: disable=unnecessary-list-index-lookup
|
||||||
|
|
||||||
|
|
||||||
def parse_file(file):
|
def parse_file(file):
|
||||||
|
|
2
8/8_2.py
2
8/8_2.py
|
@ -1,5 +1,7 @@
|
||||||
#!/usr/bin/env python
|
#!/usr/bin/env python
|
||||||
# 2021 - Advent Of Code - 8 part 2
|
# 2021 - Advent Of Code - 8 part 2
|
||||||
|
# 2022: cheat for pylint to start fresh for 2022
|
||||||
|
# pylint: disable=no-member
|
||||||
|
|
||||||
# acedgfb cdfbe gcdfa fbcad dab cefabd cdfgeb eafb cagedb ab | cdfeb fcadb cdfeb cdbaf
|
# acedgfb cdfbe gcdfa fbcad dab cefabd cdfgeb eafb cagedb ab | cdfeb fcadb cdfeb cdbaf
|
||||||
|
|
||||||
|
|
2
9/9.py
2
9/9.py
|
@ -1,5 +1,7 @@
|
||||||
#!/usr/bin/env python
|
#!/usr/bin/env python
|
||||||
# 2021 - Advent Of Code - 9
|
# 2021 - Advent Of Code - 9
|
||||||
|
# 2022: cheat for pylint to start fresh for 2022
|
||||||
|
# pylint: disable=unnecessary-list-index-lookup
|
||||||
|
|
||||||
def parse_file(file):
|
def parse_file(file):
|
||||||
hmap = []
|
hmap = []
|
||||||
|
|
Loading…
Reference in a new issue