We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent e450818 commit 88d0fbaCopy full SHA for 88d0fba
7 files changed
CHANGELOG.md
@@ -1,5 +1,12 @@
1
# CHANGELOG
2
3
+## 5.0.0-rc2 - 2026-01-18
4
+### Changes
5
+* :sparkles: add Job to inference responses
6
+### Fixes
7
+* :bug: fix for bin scripts
8
+
9
10
## 5.0.0-rc1 - 2026-01-17
11
### Changes
12
* :boom: drop support for node.js 18
eslint.config.mjs
@@ -7,6 +7,8 @@ import { fileURLToPath } from "node:url";
import js from "@eslint/js";
import { FlatCompat } from "@eslint/eslintrc";
+/* eslint-disable @typescript-eslint/naming-convention */
const __filename = fileURLToPath(import.meta.url);
13
const __dirname = path.dirname(__filename);
14
const compat = new FlatCompat({
@@ -39,10 +41,10 @@ export default [{
39
41
}],
40
42
43
semi: ["error"],
- "jsdoc/check-alignment": 1,
- "jsdoc/check-param-names": 1,
44
- "jsdoc/check-types": 1,
45
- "jsdoc/no-undefined-types": 1,
+ "jsdoc/check-alignment": "error",
+ "jsdoc/check-param-names": "error",
46
+ "jsdoc/check-types": "error",
47
+ "jsdoc/no-undefined-types": "error",
48
"@typescript-eslint/no-unused-vars": "error",
49
"@typescript-eslint/no-explicit-any": "off",
50
"@typescript-eslint/no-inferrable-types": "off",
0 commit comments