[Tests] Included missing YAML file
This commit is contained in:
parent
08a0628eff
commit
199bb9441f
|
|
@ -12,7 +12,8 @@ exclude:
|
|||
.*error.*\.yaml|
|
||||
experiments/.*|
|
||||
submodules/.*|
|
||||
kibot/PyPDF2/.*
|
||||
kibot/PyPDF2/.*|
|
||||
tests/yaml_samples/simple_position_csv_pre.kibot.yaml
|
||||
)$
|
||||
repos:
|
||||
- repo: https://github.com/pre-commit/pre-commit-hooks
|
||||
|
|
|
|||
|
|
@ -4,6 +4,10 @@ branch = main
|
|||
[check-yaml]
|
||||
unsafe = True
|
||||
|
||||
[yamllint]
|
||||
ignore: |
|
||||
tests/yaml_samples/simple_position_csv_pre.kibot.yaml
|
||||
|
||||
[pyupgrade]
|
||||
py36-plus = True
|
||||
|
||||
|
|
|
|||
|
|
@ -0,0 +1,14 @@
|
|||
# Example KiBot config file for a basic 2-layer board
|
||||
kibot:
|
||||
version: 1
|
||||
|
||||
outputs:
|
||||
|
||||
- name: 'position'
|
||||
type: position
|
||||
dir: positiondir_@UNITS@
|
||||
options:
|
||||
format: CSV # CSV or ASCII format
|
||||
units: @UNITS@ # millimeters or inches
|
||||
separate_files_for_front_and_back: true
|
||||
only_smd: true
|
||||
Loading…
Reference in New Issue