I'm writing some JavaScript in VS Code that runs a query against the Google Maps Places Autocomplete API and Code won't allow me to enter a location option that has a negative longitude. I want this:
var options = {
types: ['(cities)'],
location: 34.05223,-118.24368
}
Code keeps putting a space between the minus sign and the rest of the digits in the longitude:
location: 34.05223,- 118.24368
Is there some way to override this behavior? I've checked my Code extensions and don't see one (such as a linter) that I can disable.