So after pushing your commits how do you find where are the erros that keeps the check from succeding ?
I suspect that the json I modified are not all formatted correctly but how do I find the ones that are messed up ?
Also the web linting tool seems to systematically change “column” by “lines”
“items”: [
[ “fertilizer_commercial”, 100 ],
[ “fertilizer_liquid”, 60 ],
[ “material_quicklime”, 80 ]
]
by
“items”: [ [ “fertilizer_commercial”, 100 ], [ “fertilizer_liquid”, 60 ], [ “material_quicklime”, 80 ] ]
But every list of component in the jsons seems to be in column by default so is that an error ?