Files
openlayers/examples/.eslintrc
T
Frederic Junod 79c8afdba8 Simplify import path in examples
To have the same path (starting with `ol/`, without `.js`) as in the documentation.
The support was added in the webpack config in #8928
2018-11-26 17:18:52 +01:00

25 lines
481 B
Plaintext

{
"globals": {
"$": false,
"arc": false,
"common": false,
"createMapboxStreetsV6Style": false,
"d3": false,
"domtoimage": false,
"geojsonvt": false,
"GyroNorm": false,
"jsPDF": false,
"jsts": false,
"mapboxgl": false,
"saveAs": false,
"toastr": false,
"topojson": false,
"topolis": false,
"turf": false
},
"rules": {
"import/no-unresolved": 0,
"no-unused-vars": [2, {"varsIgnorePattern": "^map"}]
}
}