[Fixed] Missing warning 132 definition

This commit is contained in:
Salvador E. Tropea 2023-09-08 11:22:39 -03:00
parent 85a564570d
commit 16d0aef8a0
2 changed files with 5 additions and 2 deletions

View File

@ -97,5 +97,5 @@ repos:
hooks:
- id: vermin
# specify your target version here, OR in a Vermin config file as usual:
args: ['-t=3.7-', '--violations']
args: ['-t=2.7', '-t=3.7-', '--violations']
# (if your target is specified in a Vermin config, you may omit the 'args' entry entirely)

View File

@ -45,6 +45,7 @@ PS_SCH_PRINT = 31
DXF_SCH_PRINT = 32
HPGL_SCH_PRINT = 33
CORRUPTED_PRO = 34
BLENDER_ERROR = 35
error_level_to_name = ['NONE',
'INTERNAL_ERROR',
'WRONG_ARGUMENTS',
@ -79,7 +80,8 @@ error_level_to_name = ['NONE',
'PS_SCH_PRINT',
'DXF_SCH_PRINT',
'HPGL_SCH_PRINT',
'CORRUPTED_PRO'
'CORRUPTED_PRO',
'BLENDER_ERROR'
]
KICOST_SUBMODULE = '../submodules/KiCost/src/kicost'
EXAMPLE_CFG = 'example_template.kibot.yaml'
@ -282,6 +284,7 @@ W_ENVEXIST = '(W128) '
W_FLDCOLLISION = '(W129) '
W_NEWGROUP = '(W130) '
W_NOTINBOM = '(W131) '
W_MISSDIR = '(W132) '
# Somehow arbitrary, the colors are real, but can be different
PCB_MAT_COLORS = {'fr1': "937042", 'fr2': "949d70", 'fr3': "adacb4", 'fr4': "332B16", 'fr5': "6cc290"}
PCB_FINISH_COLORS = {'hal': "8b898c", 'hasl': "8b898c", 'imag': "8b898c", 'enig': "cfb96e", 'enepig': "cfb96e",