Skip to content

build(deps-dev): Bump @typescript-eslint/parser from 8.5.0 to 8.16.0 #1489

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

Closed
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
103 changes: 95 additions & 8 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
@@ -61,7 +61,7 @@
"@types/jest": "^29.5.12",
"@types/node": "^22.5.0",
"@typescript-eslint/eslint-plugin": "^8.5.0",
"@typescript-eslint/parser": "^8.5.0",
"@typescript-eslint/parser": "^8.16.0",
"esbuild": "^0.23.1",
"esbuild-node-externals": "^1.14.0",
"eslint": "^8.57.0",

Unchanged files with check annotations Beta

if (patterns.length === noPatternsProvided) {
debug(`No lint targets provided`);
console.log(chalk.red.bold('No lint targets provided'));

Check warning on line 92 in src/cli.ts

GitHub Actions / Lint

Unexpected console statement
const exitCode = flags.allowEmptyTargets ? exitCodes.zeroClean : exitCodes.oneMissingTarget;
process.exit(exitCode);
} catch (error) {
console.log(chalk.red.bold(error.message));

Check warning on line 131 in src/cli.ts

GitHub Actions / Lint

Unexpected console statement
process.exit(exitCodes.runTimeException);
}
let adjustedModuleName = moduleName;
if (moduleName.startsWith('./')) {
// TODO: handle process.cwd() option

Check warning on line 80 in src/config/applyExtendsIfSpecified.ts

GitHub Actions / Lint

Unexpected 'todo' comment: 'TODO: handle process.cwd() option'
adjustedModuleName = path.join(process.cwd(), moduleName);
// eslint-disable-next-line @typescript-eslint/no-use-before-define
config = loadConfigFile(adjustedModuleName);
*/
const printResultSetIssues = (issues: LintIssue[]): void => {
issues.forEach((issue) => {
console.log(issue.toString());

Check warning on line 16 in src/console-reporter.ts

GitHub Actions / Lint

Unexpected console statement
});
};
const {filePath, issues, ignored, errorCount, warningCount} = resultSet;
if (ignored) {
console.log('');

Check warning on line 31 in src/console-reporter.ts

GitHub Actions / Lint

Unexpected console statement
console.log(`${chalk.yellow.underline(filePath)} - ignored`);

Check warning on line 33 in src/console-reporter.ts

GitHub Actions / Lint

Unexpected console statement
} else if (errorCount > zeroIssues || (!quiet && warningCount > zeroIssues)) {
console.log('');

Check warning on line 35 in src/console-reporter.ts

GitHub Actions / Lint

Unexpected console statement
console.log(chalk.underline(filePath));

Check warning on line 37 in src/console-reporter.ts

GitHub Actions / Lint

Unexpected console statement
printResultSetIssues(issues);
const errorCountMessage = `${errorCount} ${plur('error', errorCount)}`;
const warningCountMessage = `${warningCount} ${plur('warning', warningCount)}`;
console.log(chalk.red.bold(errorCountMessage));

Check warning on line 44 in src/console-reporter.ts

GitHub Actions / Lint

Unexpected console statement
if (!quiet) {
console.log(chalk.yellow.bold(warningCountMessage));

Check warning on line 47 in src/console-reporter.ts

GitHub Actions / Lint

Unexpected console statement
}
}
};