20         L: true, // leaflet library
 
  21         Nominatim_Config: true
 
  24         camelcase: 'off', // my_var is fine, no need for myVar
 
  25         'func-names': 'off', // anonymous 'function()' is fine
 
  27         'new-cap': 'off', // constructor name can start lowercase (as Leaflet does)
 
  28         'no-multiple-empty-lines': 'off',
 
  29         'no-use-before-define': ['error', { functions: false }],
 
  30         'padded-blocks': 'off',
 
  31         'no-param-reassign': 'off',
 
  45       processor: 'svelte3/svelte3',
 
  47         'no-label-var': 'off' // eslint thinks $: (https://svelte.dev/tutorial/reactive-statements) are labels