--- /dev/null
+<Igor2> the problem is this:
+<Igor2> in the industrly, almost everything else than geda/pcb and pcb-rnd has a clearance model that's based on nets, not drawing objects
+<Igor2> EasyEDA included
+<Igor2> so you typically define that you want 15 mil clearance between Vcc and GND, 10 mil between signals and GND and there's usually a grand fallback default value
+<Igor2> but these are all net based, so neither polygons nor padstacks/lines/etc store any clearance value
+<Igor2> in such a data model, a footprint obviosuly won't have copper clearance values either
+<Igor2> now geda/pcb couldn't handle this in any way, but in pcb-rnd we have a half-way solution
+<Igor2> for some years already, you can specify polygon-side clearance
+<Igor2> it's still object based, so not the network based approach, but you can more easily emulate the network based approach with it
+<Igor2> this is how it works:
+<Igor2> you set the padstack's clearance to some very small number, and you set the poygon-enforced clearance to some bigger number
+<Igor2> the rule is that in any object-polygon relation the bigger clearance number wins
+<Igor2> when pcb-rnd loads an EasyEDA board, we do that, figuring which object ended up in which net and set object clerances from their net based clearance rules
+<Igor2> and that's typically done through polygons
+<Igor2> that's why padstacks get a very small clearance value: the file format doesn't specify any clearance, and because the footpritn is designed for a net based clearance approach, the closest thing we can do is choosing a small value
+<Igor2> btw, you don't need to edit the lht to tune these, we have GUI for this
+<Igor2> in fact multiple GUI options, with propedit being able to mass-edit objects
+<Igor2> so all in all, what you see is normal and is a side effect of the totally different way we model the world (which is inherited from geda/pcb); in the same time I think EasyEDA pro is pretty much a reimplementation of altium (which is just a fancy name for protel), which has a more centralized way of specifying board parameters
+<Igor2> IIRC kicad went for net based clearances too
+<Igor2> it's also very common to regard padstacks as parametric objects, so you specify only the shape of the copper pad in your footprint and mask aperture is computed from that using some board-global setting
+<Igor2> I can't remember whether easyeda had this or not
+<Igor2> if you want tips on how to quick-edit the clearance of those easyeda footprints easily from gui or even CLI actions, let me know, I can help with that