Skip to content

Commit f42c01e

Browse files
committed
refactor: fix remaining lint problems after update
1 parent 09c0e6b commit f42c01e

File tree

7 files changed

+20
-16
lines changed

7 files changed

+20
-16
lines changed

package-lock.json

+3
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

packages/ci/eslint.config.js

+1
Original file line numberDiff line numberDiff line change
@@ -25,6 +25,7 @@ export default tseslint.config(
2525
files: ['**/*.test.ts'],
2626
rules: {
2727
'vitest/max-nested-describe': ['warn', { max: 3 }],
28+
'n/no-unsupported-features/node-builtins': 'off',
2829
},
2930
},
3031
);

packages/plugin-eslint/src/lib/nx.integration.test.ts

+1-2
Original file line numberDiff line numberDiff line change
@@ -9,8 +9,7 @@ import {
99
eslintConfigFromNxProjectAndDeps,
1010
} from './nx/index.js';
1111

12-
const ALL_PROJECTS = ['cli', 'core', 'nx-plugin', 'utils'] as const;
13-
type Project = (typeof ALL_PROJECTS)[number];
12+
type Project = 'cli' | 'core' | 'nx-plugin' | 'utils';
1413

1514
describe('Nx helpers', () => {
1615
let cwdSpy: MockInstance<[], string>;

packages/plugin-js-packages/src/lib/runner/index.ts

+1-1
Original file line numberDiff line numberDiff line change
@@ -129,7 +129,7 @@ async function processAudit(
129129

130130
const rejected = auditResults.filter(isPromiseRejectedResult);
131131
if (rejected.length > 0) {
132-
rejected.map(result => {
132+
rejected.forEach(result => {
133133
console.error(result.reason);
134134
});
135135

packages/utils/package.json

+3
Original file line numberDiff line numberDiff line change
@@ -23,6 +23,9 @@
2323
"access": "public"
2424
},
2525
"type": "module",
26+
"engines": {
27+
"node": ">=17.0.0"
28+
},
2629
"dependencies": {
2730
"@code-pushup/models": "0.56.0",
2831
"@isaacs/cliui": "^8.0.2",

packages/utils/src/lib/reports/utils.ts

+10-13
Original file line numberDiff line numberDiff line change
@@ -237,34 +237,31 @@ export function compareIssues(a: Issue, b: Issue): number {
237237
if (a.severity !== b.severity) {
238238
return -compareIssueSeverity(a.severity, b.severity);
239239
}
240-
241240
if (!a.source && b.source) {
242241
return -1;
243242
}
244-
245243
if (a.source && !b.source) {
246244
return 1;
247245
}
248-
249246
if (a.source?.file !== b.source?.file) {
250247
return a.source?.file.localeCompare(b.source?.file || '') ?? 0;
251248
}
249+
return compareSourceFilePosition(a.source?.position, b.source?.position);
250+
}
252251

253-
if (!a.source?.position && b.source?.position) {
252+
function compareSourceFilePosition(
253+
a: NonNullable<Issue['source']>['position'],
254+
b: NonNullable<Issue['source']>['position'],
255+
): number {
256+
if (!a && b) {
254257
return -1;
255258
}
256-
257-
if (a.source?.position && !b.source?.position) {
259+
if (a && !b) {
258260
return 1;
259261
}
260-
261-
if (a.source?.position?.startLine !== b.source?.position?.startLine) {
262-
return (
263-
(a.source?.position?.startLine ?? 0) -
264-
(b.source?.position?.startLine ?? 0)
265-
);
262+
if (a?.startLine !== b?.startLine) {
263+
return (a?.startLine ?? 0) - (b?.startLine ?? 0);
266264
}
267-
268265
return 0;
269266
}
270267

testing/test-utils/src/lib/fixtures/configs/code-pushup.needs-tsconfig.config.ts

+1
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,6 @@
11
// the point is to test runtime import which relies on alias defined in tsconfig.json "paths"
22
// non-type import from '@example/custom-plugin' wouldn't work without --tsconfig
3+
// eslint-disable-next-line import/no-unresolved
34
import customPlugin from '@example/custom-plugin';
45

56
const config = {

0 commit comments

Comments
 (0)