mirror of
https://github.com/Leaflet/Leaflet.git
synced 2025-07-25 15:38:54 +00:00
20 lines
405 B
JavaScript
20 lines
405 B
JavaScript
/** @type {import('eslint').Linter.Config } */
|
|
module.exports = {
|
|
rules: {
|
|
'no-console': 'off'
|
|
},
|
|
env: {
|
|
mocha: true,
|
|
},
|
|
globals: {
|
|
L: true,
|
|
expect: false,
|
|
sinon: false,
|
|
UIEventSimulator: false,
|
|
Hand: false,
|
|
touchEventType: false, /* defined in SpecHelper.js */
|
|
createContainer: false, /* defined in SpecHelper.js */
|
|
removeMapContainer: false /* defined in SpecHelper.js */
|
|
}
|
|
};
|