forked from Leaflet/Leaflet
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy patheslint.config.js
More file actions
125 lines (121 loc) · 3.18 KB
/
eslint.config.js
File metadata and controls
125 lines (121 loc) · 3.18 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
import config from 'eslint-config-mourner';
import css from '@eslint/css';
import scriptTags from '@mapbox/eslint-plugin-script-tags';
import importPlugin from 'eslint-plugin-import-x';
import globals from 'globals';
import baselineJs from 'eslint-plugin-baseline-js';
export default [
...config.map(c => ({
...c,
files: ['**/*.js', '**/*.cjs'],
})),
{
ignores: [
'dist/*.js',
'docs/docs/highlight',
'docs/examples/choropleth/us-states.js',
'docs/examples/geojson/sample-geojson.js',
'docs/examples/map-panes/eu-countries.js',
'docs/examples/extending-2-layers/index.md',
'docs/examples/quick-start/index.md', // importmap is not recognized by eslint
'docs/download.md', // importmap is not recognized by eslint
'docs/_posts/2025-05-18-leaflet-2.0.0-alpha.md', // importmap is not recognized by eslint
'docs/_posts/201*',
'docs/_site',
'coverage'
]
},
{
files: ['**/*.js', '**/*.cjs'],
plugins: {
import: importPlugin
},
rules: {
'dot-notation': 'off',
'consistent-return': 'off',
'curly': 'error',
'no-unused-expressions': ['error', {allowShortCircuit: true}],
'no-unused-vars': ['error', {caughtErrors: 'none'}],
'import/extensions': ['error', 'ignorePackages'],
'@stylistic/indent': ['error', 'tab', {VariableDeclarator: 0, flatTernaryExpressions: true}],
'@stylistic/no-mixed-spaces-and-tabs': ['error', 'smart-tabs'],
'@stylistic/key-spacing': 'off',
'@stylistic/linebreak-style': ['off', 'unix'],
'@stylistic/spaced-comment': 'error',
// TODO: Re-enable the rules below and fix the linting issues.
'no-invalid-this': 'off',
'prefer-exponentiation-operator': 'error',
'prefer-object-has-own': 'error',
'prefer-spread': 'off',
'no-new': 'off'
}
},
{
files: ['**/*.css'],
language: 'css/css',
...css.configs.recommended,
rules: {
...css.configs.recommended.rules,
'css/no-important': 'warn',
'css/use-baseline': ['error', {
allowProperties: [
'clip',
'outline',
'print-color-adjust',
'user-select',
'word-break',
],
allowSelectors: [
'has',
'nesting',
]
}]
}
},
{
files: ['src/**/*.{js,ts,jsx,tsx}'],
plugins: {'baseline-js': baselineJs},
rules: {
'baseline-js/use-baseline': ['error', {
available: 'widely',
includeWebApis: {preset: 'auto', ignore: [
// According to https://developer.mozilla.org/en-US/docs/Web/API/Window/devicePixelRatio, the feature is only partially supported in Safari:
// In Safari on iOS, the devicePixelRatio does not change when the page is zoomed. See bug https://webkit.org/b/124862.
'devicepixelratio',
]},
includeJsBuiltins: {preset: 'auto'},
}],
},
},
{
files: ['docs/examples/**', 'docs/plugins.md'],
rules: {
'@stylistic/eol-last': 'off',
},
},
{
files: ['spec/**'],
languageOptions: {
globals: {...globals.mocha}
},
rules: {
'no-unused-expressions': 'off'
}
},
{
files: ['docs/**/*.md'],
plugins: {
scriptTags: {
processors: {md: scriptTags.processors['.md']}
}
},
processor: 'scriptTags/md',
rules: {
'no-unused-vars': 'off',
'@stylistic/js/eol-last': 'off'
},
languageOptions: {
globals: {L: false}
}
}
];