Fixed KiBoM mounting hole regex

Related to SchrodingersGat/KiBoM#169
This commit is contained in:
Salvador E. Tropea 2022-04-21 11:09:35 -03:00
parent eca4f51c91
commit ac391182a8
1 changed files with 1 additions and 1 deletions

View File

@ -16,7 +16,7 @@ from . import log
logger = log.get_logger()
DEFAULT_EXCLUDE = [{'column': ColumnList.COL_REFERENCE, 'regex': '^TP[0-9]*'},
{'column': ColumnList.COL_REFERENCE, 'regex': '^FID'},
{'column': ColumnList.COL_PART, 'regex': 'mount.*hole'},
{'column': ColumnList.COL_PART, 'regex': '^mount.*hole'},
{'column': ColumnList.COL_PART, 'regex': 'solder.*bridge'},
{'column': ColumnList.COL_PART, 'regex': 'solder.*jump'},
{'column': ColumnList.COL_PART, 'regex': 'test.*point'},