Blender STL default settings aren't what I like to have by default. Working in millimeters inside Blender makes the STLs come out tiny, so I tried to find a way to change these defaults and keep it that way.
Turns out they're baked into the io_mesh_stl script.
This gist is a Windows PowerShell script to make the necessary adjustments.
They are:
ImportSTL global_scale
at _init_.py#L102 becomes default=0.1
ExportSTL use_selection
below at _init_.py#L166 becomes default=True
.
ExportSTL global_scale
at _init_.py#L171 becomes default=10.0
Run from gist:
PS:>iex ((new-object net.webclient).DownloadString('https://gist.github.com/akaleeroy/453f5ab97e1347eeede0/raw/configure-blender-stl.ps1'))