-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathlint-diagnostics.js
More file actions
463 lines (387 loc) · 10.9 KB
/
Copy pathlint-diagnostics.js
File metadata and controls
463 lines (387 loc) · 10.9 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
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
const biomeConfiguration = {
assist: {
enabled: false,
},
formatter: {
enabled: false,
},
linter: {
enabled: true,
rules: {
recommended: true,
},
},
}
const lintPathByScope = {
component: '/component.tsx',
styles: '/styles.css',
stylesModule: '/styles.module.css',
stylesSass: '/styles.scss',
}
const allowedUnusedComponentBindings = new Set(['App', 'View', 'render'])
const normalizeSeverity = value => {
if (value === 'error' || value === 2) return 'error'
if (value === 'warning' || value === 1) return 'warning'
return 'info'
}
const normalizeLintDiagnostic = diagnostic => {
const line = Number.isFinite(diagnostic?.line) ? Number(diagnostic.line) : null
const column = Number.isFinite(diagnostic?.column) ? Number(diagnostic.column) : null
const message =
typeof diagnostic?.message === 'string' && diagnostic.message.trim().length > 0
? diagnostic.message.trim()
: 'Unknown lint diagnostic'
return {
engine: typeof diagnostic?.engine === 'string' ? diagnostic.engine : 'lint',
ruleId: typeof diagnostic?.ruleId === 'string' ? diagnostic.ruleId : null,
message,
severity: normalizeSeverity(diagnostic?.severity),
line,
column,
}
}
const formatLintDiagnosticMessage = diagnostic => {
const ruleSuffix = diagnostic.ruleId ? ` (${diagnostic.ruleId})` : ''
return `${diagnostic.message}${ruleSuffix}`
}
const buildLintDiagnosticsSummary = ({ diagnostics, okHeadline, errorHeadline }) => {
const normalized = diagnostics.map(normalizeLintDiagnostic)
if (normalized.length === 0) {
return {
headline: okHeadline,
lines: [],
level: 'ok',
}
}
return {
headline: errorHeadline,
lines: normalized.map(diagnostic => ({
line: diagnostic.line,
column: diagnostic.column,
message: formatLintDiagnosticMessage(diagnostic),
})),
level: 'error',
}
}
const normalizeLintRuleId = category => {
if (typeof category !== 'string' || category.length === 0) {
return null
}
if (category.startsWith('lint/')) {
return category.slice(5)
}
return category
}
const normalizeLintMessage = markup => {
if (!Array.isArray(markup)) {
return 'Unknown lint diagnostic'
}
const message = markup
.map(node => (typeof node?.content === 'string' ? node.content : ''))
.join('')
.trim()
return message.length > 0 ? message : 'Unknown lint diagnostic'
}
const normalizeLintSeverity = severity => {
if (severity === 'fatal' || severity === 'error') {
return 2
}
if (severity === 'warning') {
return 1
}
return 0
}
const getLineAndColumnFromOffset = (source, offset) => {
if (!Number.isInteger(offset) || offset < 0) {
return { line: null, column: null }
}
const limit = Math.min(offset, source.length)
let line = 1
let column = 1
for (let index = 0; index < limit; index += 1) {
if (source[index] === '\n') {
line += 1
column = 1
continue
}
column += 1
}
return { line, column }
}
const getIdentifierAtOffset = (source, offset) => {
if (!Number.isInteger(offset) || offset < 0 || offset >= source.length) {
return null
}
const tail = source.slice(offset)
const declarationMatch = tail.match(
/^(?:function|class|const|let|var)\s+([A-Za-z_$][\w$]*)/,
)
if (declarationMatch) {
return declarationMatch[1]
}
const identifierMatch = tail.match(/^[A-Za-z_$][\w$]*/)
return identifierMatch ? identifierMatch[0] : null
}
const normalizeBiomeLintDiagnostics = ({ source, diagnostics }) =>
diagnostics
.filter(diagnostic => {
if (diagnostic?.category !== 'lint/correctness/noUnusedVariables') {
return true
}
const startOffset = Array.isArray(diagnostic?.location?.span)
? diagnostic.location.span[0]
: null
const identifierAtSpan = getIdentifierAtOffset(source, startOffset)
if (identifierAtSpan && allowedUnusedComponentBindings.has(identifierAtSpan)) {
return false
}
const message = normalizeLintMessage(diagnostic?.message)
const match = message.match(/[`'"]?([A-Za-z_$][\w$]*)[`'"]? is unused\./)
if (!match) {
return true
}
return !allowedUnusedComponentBindings.has(match[1])
})
.map(diagnostic => {
const startOffset = Array.isArray(diagnostic?.location?.span)
? diagnostic.location.span[0]
: null
const position = getLineAndColumnFromOffset(source, startOffset)
return {
engine: 'biome',
ruleId: normalizeLintRuleId(diagnostic?.category),
message: normalizeLintMessage(diagnostic?.message),
severity: normalizeLintSeverity(diagnostic?.severity),
line: position.line,
column: position.column,
}
})
const isAbortError = error =>
error instanceof DOMException
? error.name === 'AbortError'
: error instanceof Error && error.name === 'AbortError'
const throwIfAborted = signal => {
if (signal?.aborted) {
throw new DOMException('Aborted', 'AbortError')
}
}
export const createLintDiagnosticsController = ({
cdnImports,
importFromCdnWithFallback,
getComponentSource,
getStylesSource,
getStyleMode,
setComponentDiagnostics,
setStyleDiagnostics,
setStatus,
onIssuesDetected = () => {},
}) => {
let biomeWorkspacePromise = null
let componentLintRunId = 0
let stylesLintRunId = 0
const initializeBiomeWorkspace = async () => {
const loaded = await importFromCdnWithFallback(cdnImports.biomeWasmWeb)
const module = loaded.module
if (
typeof module?.default !== 'function' ||
typeof module?.Workspace !== 'function'
) {
throw new Error('Unexpected @biomejs/wasm-web module shape from CDN.')
}
await module.default()
const workspace = new module.Workspace()
const opened = workspace.openProject({
openUninitialized: true,
path: '/',
})
workspace.updateSettings({
configuration: biomeConfiguration,
projectKey: opened.projectKey,
})
return {
workspace,
projectKey: opened.projectKey,
}
}
const ensureBiomeWorkspace = async () => {
if (!biomeWorkspacePromise) {
biomeWorkspacePromise = initializeBiomeWorkspace().catch(error => {
biomeWorkspacePromise = null
throw error
})
}
return biomeWorkspacePromise
}
const runLintDiagnostics = async ({ source, path, signal }) => {
throwIfAborted(signal)
const session = await ensureBiomeWorkspace()
throwIfAborted(signal)
const { workspace, projectKey } = session
workspace.openFile({
path,
projectKey,
content: {
type: 'fromClient',
content: source,
version: 1,
},
})
try {
const result = workspace.pullDiagnostics({
categories: ['lint'],
path,
projectKey,
pullCodeActions: false,
})
throwIfAborted(signal)
return normalizeBiomeLintDiagnostics({
source,
diagnostics: result.diagnostics,
})
} finally {
workspace.closeFile({
path,
projectKey,
})
}
}
const lintComponent = async ({ signal, userInitiated = false } = {}) => {
componentLintRunId += 1
const runId = componentLintRunId
setComponentDiagnostics({
headline: 'Running Biome diagnostics...',
lines: [],
level: 'muted',
})
setStatus('Linting component with Biome...', 'pending')
try {
const diagnostics = await runLintDiagnostics({
source: getComponentSource(),
path: lintPathByScope.component,
signal,
})
if (runId !== componentLintRunId) {
return null
}
const summary = buildLintDiagnosticsSummary({
diagnostics,
okHeadline: 'No Biome issues found.',
errorHeadline: 'Biome reported issues.',
})
setComponentDiagnostics(summary)
setStatus(
summary.level === 'error'
? `Rendered (Lint issues: ${summary.lines.length})`
: 'Rendered',
summary.level === 'error' ? 'error' : 'neutral',
)
if (userInitiated && summary.lines.length > 0) {
onIssuesDetected({
kind: 'lint',
scope: 'component',
issueCount: summary.lines.length,
})
}
return {
issueCount: summary.lines.length,
}
} catch (error) {
if (runId !== componentLintRunId) {
return null
}
if (isAbortError(error)) {
return null
}
const message = error instanceof Error ? error.message : String(error)
setComponentDiagnostics({
headline: `Biome unavailable: ${message}`,
lines: [],
level: 'error',
})
setStatus('Component lint unavailable', 'error')
return {
issueCount: 0,
}
}
}
const lintStyles = async ({ signal, userInitiated = false } = {}) => {
stylesLintRunId += 1
const runId = stylesLintRunId
setStyleDiagnostics({
headline: 'Running Biome diagnostics...',
lines: [],
level: 'muted',
})
setStatus('Linting styles with Biome...', 'pending')
try {
const styleMode = getStyleMode()
if (styleMode === 'less') {
throw new Error('Biome CSS lint does not currently support Less syntax.')
}
const path =
styleMode === 'sass'
? lintPathByScope.stylesSass
: styleMode === 'module'
? lintPathByScope.stylesModule
: lintPathByScope.styles
const diagnostics = await runLintDiagnostics({
source: getStylesSource(),
path,
signal,
})
if (runId !== stylesLintRunId) {
return null
}
const summary = buildLintDiagnosticsSummary({
diagnostics,
okHeadline: 'No Biome issues found.',
errorHeadline: 'Biome reported issues.',
})
setStyleDiagnostics(summary)
setStatus(
summary.level === 'error'
? `Rendered (Lint issues: ${summary.lines.length})`
: 'Rendered',
summary.level === 'error' ? 'error' : 'neutral',
)
if (userInitiated && summary.lines.length > 0) {
onIssuesDetected({
kind: 'lint',
scope: 'styles',
issueCount: summary.lines.length,
})
}
return {
issueCount: summary.lines.length,
}
} catch (error) {
if (runId !== stylesLintRunId) {
return null
}
if (isAbortError(error)) {
return null
}
const message = error instanceof Error ? error.message : String(error)
setStyleDiagnostics({
headline: `Biome unavailable: ${message}`,
lines: [],
level: 'error',
})
setStatus('Styles lint unavailable', 'error')
return {
issueCount: 0,
}
}
}
const cancelAll = () => {
componentLintRunId += 1
stylesLintRunId += 1
}
const dispose = () => {}
return {
cancelAll,
lintComponent,
lintStyles,
dispose,
}
}