Fixed some YAML linter warnings
This commit is contained in:
parent
2f9d81964e
commit
52113cc394
|
|
@ -9,36 +9,36 @@ kibot:
|
||||||
version: 1
|
version: 1
|
||||||
|
|
||||||
filters:
|
filters:
|
||||||
- name: exclude_virtual
|
- name: exclude_virtual
|
||||||
comment: "Exclude virtual footprints (when using bom output for generating XY file)"
|
comment: "Exclude virtual footprints (when using bom output for generating XY file)"
|
||||||
type: generic
|
type: generic
|
||||||
exclude_virtual: true
|
exclude_virtual: true
|
||||||
|
|
||||||
outputs:
|
outputs:
|
||||||
# Use bom output to generate position file
|
# Use bom output to generate position file
|
||||||
# Must include fiducials in order for pick/place to calculate footprint locations
|
# Must include fiducials in order for pick/place to calculate footprint locations
|
||||||
- name: assy_position
|
- name: assy_position
|
||||||
comment: "Board assembly position file (CSV)"
|
comment: "Board assembly position file (CSV)"
|
||||||
type: bom
|
type: bom
|
||||||
options:
|
options:
|
||||||
format: CSV
|
format: CSV
|
||||||
columns:
|
columns:
|
||||||
- field: "References"
|
- field: "References"
|
||||||
name: "Ref"
|
name: "Ref"
|
||||||
- field: "Footprint"
|
- field: "Footprint"
|
||||||
- field: "Footprint Type"
|
- field: "Footprint Type"
|
||||||
name: "Type"
|
name: "Type"
|
||||||
- field: "Footprint X"
|
- field: "Footprint X"
|
||||||
name: "PosX"
|
name: "PosX"
|
||||||
- field: "Footprint Y"
|
- field: "Footprint Y"
|
||||||
name: "PosY"
|
name: "PosY"
|
||||||
- field: "Footprint Rot"
|
- field: "Footprint Rot"
|
||||||
name: "Rot"
|
name: "Rot"
|
||||||
- field: "Footprint Side"
|
- field: "Footprint Side"
|
||||||
name: "Side"
|
name: "Side"
|
||||||
- field: "Footprint Populate"
|
- field: "Footprint Populate"
|
||||||
name: "Populate"
|
name: "Populate"
|
||||||
group_fields: [] # disable grouping
|
group_fields: [] # disable grouping
|
||||||
exclude_filter: exclude_virtual # remove test points, mounting holes, edge connectors, etc.
|
exclude_filter: exclude_virtual # remove test points, mounting holes, edge connectors, etc.
|
||||||
dnf_filter: _mechanical # to also mark fiducials as DNF
|
dnf_filter: _mechanical # to also mark fiducials as DNF
|
||||||
ignore_dnf: false
|
ignore_dnf: false
|
||||||
|
|
|
||||||
|
|
@ -40,15 +40,15 @@ outputs:
|
||||||
- reference: J8
|
- reference: J8
|
||||||
library: yaqwsx
|
library: yaqwsx
|
||||||
component: Pin_Header_Straight_1x02_circle
|
component: Pin_Header_Straight_1x02_circle
|
||||||
no_drillholes: False
|
no_drillholes: false
|
||||||
mirror: False
|
mirror: false
|
||||||
highlight:
|
highlight:
|
||||||
- L_G1
|
- L_G1
|
||||||
- L_B1
|
- L_B1
|
||||||
- R10
|
- R10
|
||||||
- RV1
|
- RV1
|
||||||
show_components: all
|
show_components: all
|
||||||
vcuts: True
|
vcuts: true
|
||||||
warnings: visible
|
warnings: visible
|
||||||
dpi: 600
|
dpi: 600
|
||||||
# margin:
|
# margin:
|
||||||
|
|
@ -75,7 +75,7 @@ outputs:
|
||||||
options:
|
options:
|
||||||
<<: *pcb_draw_ops
|
<<: *pcb_draw_ops
|
||||||
style: set-red-enig
|
style: set-red-enig
|
||||||
bottom: True
|
bottom: true
|
||||||
show_components:
|
show_components:
|
||||||
- L_G1
|
- L_G1
|
||||||
- L_B1
|
- L_B1
|
||||||
|
|
|
||||||
|
|
@ -15,6 +15,6 @@ outputs:
|
||||||
options:
|
options:
|
||||||
metric_units: true
|
metric_units: true
|
||||||
origin: drill # "grid" or "drill" o "X,Y" i.e. 3.2,-10
|
origin: drill # "grid" or "drill" o "X,Y" i.e. 3.2,-10
|
||||||
#no_virtual: false # exclude 3D models for components with 'virtual' attribute
|
# no_virtual: false # exclude 3D models for components with 'virtual' attribute
|
||||||
#min_distance: 0.01 # Minimum distance between points to treat them as separate ones (default 0.01 mm)
|
# min_distance: 0.01 # Minimum distance between points to treat them as separate ones (default 0.01 mm)
|
||||||
#output: project.step
|
# output: project.step
|
||||||
|
|
|
||||||
|
|
@ -9,6 +9,6 @@ outputs:
|
||||||
options:
|
options:
|
||||||
metric_units: true
|
metric_units: true
|
||||||
origin: drill # "grid" or "drill" o "X,Y" i.e. 3.2,-10
|
origin: drill # "grid" or "drill" o "X,Y" i.e. 3.2,-10
|
||||||
#no_virtual: false # exclude 3D models for components with 'virtual' attribute
|
# no_virtual: false # exclude 3D models for components with 'virtual' attribute
|
||||||
#min_distance: 0.01 # Minimum distance between points to treat them as separate ones (default 0.01 mm)
|
# min_distance: 0.01 # Minimum distance between points to treat them as separate ones (default 0.01 mm)
|
||||||
#output: project.step
|
# output: project.step
|
||||||
|
|
|
||||||
Loading…
Reference in New Issue