mirror of
https://github.com/jlengrand/leaflet-geosearch.git
synced 2026-03-10 00:21:20 +00:00
24 lines
500 B
JavaScript
24 lines
500 B
JavaScript
module.exports = {
|
|
parser: '@typescript-eslint/parser',
|
|
extends: [
|
|
'plugin:@typescript-eslint/recommended',
|
|
'prettier/@typescript-eslint',
|
|
'plugin:prettier/recommended',
|
|
'plugin:react/recommended',
|
|
],
|
|
parserOptions: {
|
|
ecmaVersion: 2020,
|
|
sourceType: 'module',
|
|
},
|
|
rules: {
|
|
'@typescript-eslint/ban-ts-ignore': 0,
|
|
'@typescript-eslint/no-explicit-any': 'off',
|
|
curly: ['error', 'all'],
|
|
},
|
|
settings: {
|
|
react: {
|
|
version: 'detect',
|
|
},
|
|
},
|
|
};
|