mirror of
https://github.com/Leaflet/Leaflet.git
synced 2025-07-23 00:34:55 +00:00
17 lines
244 B
JavaScript
17 lines
244 B
JavaScript
/** @type {import('eslint').Linter.Config } */
|
|
module.exports = {
|
|
rules: {
|
|
'no-console': 'off',
|
|
'no-unused-expressions': 'off'
|
|
},
|
|
env: {
|
|
mocha: true,
|
|
},
|
|
globals: {
|
|
expect: false,
|
|
chai: false,
|
|
sinon: false,
|
|
Hand: false,
|
|
}
|
|
};
|