Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

chore(deps): rebuilding because of lock file maintenance #1029

Merged
merged 3 commits into from
Nov 4, 2024
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 dist/index.js
Original file line number Diff line number Diff line change
Expand Up @@ -72065,7 +72065,7 @@ class OutputParser {
return [...this._uniqueAnnotations.values()];
}
tryParseClippyLine(line) {
// eslint-disable-next-line @typescript-eslint/init-declarations
// eslint-disable-next-line @typescript-eslint/init-declarations -- return if we don't initialize it
let contents;
try {
contents = JSON.parse(line);
Expand Down
2 changes: 1 addition & 1 deletion dist/index.js.map

Large diffs are not rendered by default.

2 changes: 2 additions & 0 deletions eslint.config.mjs
Original file line number Diff line number Diff line change
Expand Up @@ -2,6 +2,7 @@ import js from "@eslint/js";
import stylistic from "@stylistic/eslint-plugin-ts";
import tsParser from "@typescript-eslint/parser";
import love from "eslint-config-love";
import commentsPlugin from "eslint-plugin-eslint-comments";
import importPlugin from "eslint-plugin-import";
import nPlugin from "eslint-plugin-n";
import perfectionist from "eslint-plugin-perfectionist";
Expand Down Expand Up @@ -136,6 +137,7 @@ export default tseslint.config(
"@stylistic/ts": stylistic,
import: importPlugin,
n: nPlugin,
"eslint-comments": commentsPlugin,
promise,
perfectionist,
},
Expand Down
49 changes: 45 additions & 4 deletions package-lock.json

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

2 changes: 1 addition & 1 deletion package.json
Original file line number Diff line number Diff line change
Expand Up @@ -52,7 +52,7 @@
"conventional-changelog-conventionalcommits": "8.0.0",
"dependency-cruiser": "16.6.0",
"eslint": "9.14.0",
"eslint-config-love": "96.0.0",
"eslint-config-love": "97.0.0",
"eslint-config-prettier": "9.1.0",
"eslint-import-resolver-node": "0.3.9",
"eslint-import-resolver-typescript": "3.6.3",
Expand Down
2 changes: 1 addition & 1 deletion src/output-parser.ts
Original file line number Diff line number Diff line change
Expand Up @@ -31,7 +31,7 @@ export class OutputParser {
}

public tryParseClippyLine(line: string): void {
// eslint-disable-next-line @typescript-eslint/init-declarations
// eslint-disable-next-line @typescript-eslint/init-declarations -- return if we don't initialize it
let contents: MaybeCargoMessage;
try {
contents = JSON.parse(line) as MaybeCargoMessage;
Expand Down
2 changes: 1 addition & 1 deletion test.setup.ts
Original file line number Diff line number Diff line change
@@ -1 +1 @@
// eslint-disable-next-line unicorn/no-empty-file
/* eslint-disable unicorn/no-empty-file -- Nothing here yet */
Loading