Skip to content
This repository was archived by the owner on Dec 25, 2025. It is now read-only.
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion lib/console-printer/index.ts
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
// Import Third-party dependencies
// Import Third-party Dependencies
import kleur from "kleur";

export type ConsoleMessage = {
Expand Down
2 changes: 1 addition & 1 deletion package.json
Original file line number Diff line number Diff line change
Expand Up @@ -60,7 +60,7 @@
"lint": "eslint ."
},
"devDependencies": {
"@openally/config.eslint": "^1.0.0",
"@openally/config.eslint": "^2.1.0",
"@openally/config.typescript": "^1.0.3",
"@types/lodash.set": "^4.3.9",
"@types/node": "^22.3.0",
Expand Down
4 changes: 2 additions & 2 deletions src/configuration/environment/index.ts
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
// Import Node.js Dependencies
import fs from "fs/promises";
import path from "path";
import fs from "node:fs/promises";
import path from "node:path";

// Import Internal Dependencies
import type { ValueOf } from "../../types/index.js";
Expand Down
4 changes: 2 additions & 2 deletions src/configuration/external/adapt.ts
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
// Import Node.js Dependencies
import { constants, accessSync } from "fs";
import { resolve } from "path";
import { constants, accessSync } from "node:fs";
import { resolve } from "node:path";

// Import Internal Dependencies
import { Nsci } from "../standard/index.js";
Expand Down
2 changes: 1 addition & 1 deletion src/configuration/external/nodesecure/ignore-file.ts
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
// Import Third-party dependencies
// Import Third-party Dependencies
import * as JSXray from "@nodesecure/js-x-ray";
import { Ajv } from "ajv";

Expand Down
2 changes: 1 addition & 1 deletion src/configuration/external/nodesecure/index.spec.ts
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@ import assert from "node:assert";
import { describe, it } from "node:test";
import fs from "node:fs/promises";

// Internal Dependencies
// Import Internal Dependencies
import { IgnorePatterns, IgnoreWarningsPatterns } from "./ignore-file.js";
import { getIgnoreFile } from "./index.js";

Expand Down
6 changes: 3 additions & 3 deletions src/configuration/external/nodesecure/index.ts
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
// Node.Js Dependencies
import fs from "fs/promises";
import { join } from "path";
// Import Node.js Dependencies
import fs from "node:fs/promises";
import { join } from "node:path";

// Import Third-party Dependencies
import { type RC as NodeSecureRuntimeConfig, read } from "@nodesecure/rc";
Expand Down
1 change: 0 additions & 1 deletion src/configuration/external/standardize.ts
Original file line number Diff line number Diff line change
@@ -1,5 +1,4 @@
// Import Third-party Dependencies
// Import Third-party Dependencies
import type { RC as NodeSecureRuntimeConfig } from "@nodesecure/rc";

// Import Internal Dependencies
Expand Down
2 changes: 1 addition & 1 deletion src/reporting/reporters/internal/scanner.ts
Original file line number Diff line number Diff line change
Expand Up @@ -78,7 +78,7 @@ function reportScannerDependencies(payload: Payload): void {
consolePrinter.font
.highlight(`${numberOfDeps} ${pluralize("dependencies", numberOfDeps)}`)
.bold().message,
consolePrinter.font.standard(`analyzed from`).message,
consolePrinter.font.standard("analyzed from").message,
consolePrinter.font.info(payload.rootDependencyName ?? "unknown").message
])
.printWithEmptyLine();
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -93,7 +93,7 @@ export function reportDependencyWarnings(

if (warningsMode === Nsci.warnings.OFF) {
consolePrinter.font
.info(`⚠ dependency warnings were skipped`)
.info("⚠ dependency warnings were skipped")
.bold()
.printWithEmptyLine();

Expand All @@ -102,7 +102,7 @@ export function reportDependencyWarnings(

if (numberOfDependencyWarnings === 0) {
consolePrinter.font
.success(`✓ 0 dependency warnings`)
.success("✓ 0 dependency warnings")
.bold()
.printWithEmptyLine();

Expand Down
2 changes: 1 addition & 1 deletion src/reporting/reporters/post-pipeline/console/index.ts
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
// Import Node.js Dependencies
import { performance } from "perf_hooks";
import { performance } from "node:perf_hooks";

// Import Third-party Dependencies
import ms from "pretty-ms";
Expand Down
1 change: 1 addition & 0 deletions src/reporting/reporters/post-pipeline/console/util.ts
Original file line number Diff line number Diff line change
@@ -1,6 +1,7 @@
// Import Third-party Dependencies
import { match } from "ts-pattern";

// Import Internal Dependencies
import {
type ConsoleMessage,
type ConsoleOutput,
Expand Down
Loading