mirror of
https://gitea.blesmrt.net/mikaela/scripts.git
synced 2024-11-26 13:09:29 +01:00
pre-commit: add mypy, black & pylint
This commit is contained in:
parent
46058c8222
commit
4a292cc08d
@ -24,13 +24,30 @@ repos:
|
|||||||
- id: doctoc
|
- id: doctoc
|
||||||
# https://github.com/Mikaela/gist/blob/master/doctoc.txt
|
# https://github.com/Mikaela/gist/blob/master/doctoc.txt
|
||||||
args: [--update-only]
|
args: [--update-only]
|
||||||
|
- repo: https://github.com/pre-commit/mirrors-mypy
|
||||||
|
rev: "v1.3.0"
|
||||||
|
hooks:
|
||||||
|
- id: mypy
|
||||||
- repo: https://github.com/pre-commit/mirrors-prettier
|
- repo: https://github.com/pre-commit/mirrors-prettier
|
||||||
rev: "v3.0.0-alpha.9-for-vscode"
|
rev: "v3.0.0-alpha.9-for-vscode"
|
||||||
hooks:
|
hooks:
|
||||||
- id: prettier
|
- id: prettier
|
||||||
|
exclude_types: [python, pyi, jupyter]
|
||||||
|
- repo: https://github.com/psf/black
|
||||||
|
rev: 23.3.0
|
||||||
|
hooks:
|
||||||
|
- id: black
|
||||||
|
#- id: black-jupyter
|
||||||
- repo: https://github.com/editorconfig-checker/editorconfig-checker.python
|
- repo: https://github.com/editorconfig-checker/editorconfig-checker.python
|
||||||
rev: "2.7.1"
|
rev: "2.7.1"
|
||||||
hooks:
|
hooks:
|
||||||
- id: editorconfig-checker
|
- id: editorconfig-checker
|
||||||
alias: ec
|
alias: ec
|
||||||
args: [-disable-max-line-length]
|
args: [-disable-max-line-length]
|
||||||
|
- repo: local
|
||||||
|
hooks:
|
||||||
|
- id: pylint
|
||||||
|
name: pylint
|
||||||
|
entry: pylint
|
||||||
|
language: system
|
||||||
|
types_or: [python, pyi]
|
||||||
|
@ -9,7 +9,7 @@ except IndexError as noarg:
|
|||||||
|
|
||||||
try:
|
try:
|
||||||
for i in range(int(wantedCount)):
|
for i in range(int(wantedCount)):
|
||||||
print(secrets.randbelow(10),end="")
|
print(secrets.randbelow(10), end="")
|
||||||
except NameError as noWantedCount:
|
except NameError as noWantedCount:
|
||||||
print()
|
print()
|
||||||
print()
|
print()
|
||||||
|
@ -1,17 +1,23 @@
|
|||||||
#!/usr/bin/env python3
|
#!/usr/bin/env python3
|
||||||
|
|
||||||
'''
|
"""
|
||||||
This script asks for a SSID name, counts it and tells whether it's of valid
|
This script asks for a SSID name, counts it and tells whether it's of valid
|
||||||
length
|
length
|
||||||
'''
|
"""
|
||||||
|
|
||||||
# Request input or assume "test" on empty.
|
# Request input or assume "test" on empty.
|
||||||
givenssid = str(input("Please enter the SSID you are thinking of (preferably 26 chars to fit _nomap): ") or "test")
|
givenssid = str(
|
||||||
|
input(
|
||||||
|
"Please enter the SSID you are thinking of (preferably 26 chars to fit _nomap): "
|
||||||
|
)
|
||||||
|
or "test"
|
||||||
|
)
|
||||||
|
|
||||||
# Ensure it's UTF-8 and store the size. E.g. åäö are longer than oao
|
# Ensure it's UTF-8 and store the size. E.g. åäö are longer than oao
|
||||||
# TODO: make this a function too
|
# TODO: make this a function too
|
||||||
givenssidlen = len(givenssid.encode("utf8"))
|
givenssidlen = len(givenssid.encode("utf8"))
|
||||||
|
|
||||||
|
|
||||||
# Checking the SSID length is done twice, so thus a function
|
# Checking the SSID length is done twice, so thus a function
|
||||||
def checkssidlen(givenssidlen):
|
def checkssidlen(givenssidlen):
|
||||||
# 32 bytes should be the maximum SSID length
|
# 32 bytes should be the maximum SSID length
|
||||||
@ -20,6 +26,7 @@ def checkssidlen(givenssidlen):
|
|||||||
else:
|
else:
|
||||||
print(givenssid, "is", givenssidlen, "to long, please select a different SSID")
|
print(givenssid, "is", givenssidlen, "to long, please select a different SSID")
|
||||||
|
|
||||||
|
|
||||||
# Checking the SSID without _nomap
|
# Checking the SSID without _nomap
|
||||||
checkssidlen(givenssidlen)
|
checkssidlen(givenssidlen)
|
||||||
# TODO: make this a function too
|
# TODO: make this a function too
|
||||||
|
Loading…
Reference in New Issue
Block a user