@aidc-toolkit/dev 0.9.0 → 0.9.1

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
package/README.md CHANGED
@@ -31,6 +31,9 @@ import esLintConfigLove from "eslint-config-love";
31
31
  import { esLintConfigAIDCToolkit } from "@aidc-toolkit/dev";
32
32
 
33
33
  export default tseslint.config(
34
+ {
35
+ ignores: ["eslint.config.js", "dist"]
36
+ },
34
37
  js.configs.recommended,
35
38
  ...tseslint.configs.strictTypeChecked,
36
39
  stylistic.configs["recommended-flat"],
package/eslint.config.js CHANGED
@@ -6,6 +6,9 @@ import esLintConfigLove from "eslint-config-love";
6
6
  import { esLintConfigAIDCToolkit } from "./dist/index.js";
7
7
 
8
8
  export default tseslint.config(
9
+ {
10
+ ignores: ["eslint.config.js", "dist"]
11
+ },
9
12
  js.configs.recommended,
10
13
  ...tseslint.configs.strictTypeChecked,
11
14
  stylistic.configs["recommended-flat"],
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@aidc-toolkit/dev",
3
- "version": "0.9.0",
3
+ "version": "0.9.1",
4
4
  "description": "Shared development artefacts for AIDC Toolkit",
5
5
  "type": "module",
6
6
  "main": "dist/index.js",
@@ -23,13 +23,13 @@
23
23
  "build": "tsup src/index.ts --format cjs,esm --dts"
24
24
  },
25
25
  "devDependencies": {
26
- "@eslint/js": "^9.10.0",
27
- "@stylistic/eslint-plugin": "^2.7.2",
28
- "eslint-config-love": "^64.0.0",
29
- "eslint-plugin-jsdoc": "^50.2.2",
26
+ "@eslint/js": "^9.11.1",
27
+ "@stylistic/eslint-plugin": "^2.8.0",
28
+ "eslint-config-love": "^71.0.0",
29
+ "eslint-plugin-jsdoc": "^50.3.0",
30
30
  "ts-node": "^10.9.2",
31
- "tsup": "^8.2.4",
32
- "typescript": "^5.5.4",
33
- "typescript-eslint": "^8.4.0"
31
+ "tsup": "^8.3.0",
32
+ "typescript": "^5.6.2",
33
+ "typescript-eslint": "^8.7.0"
34
34
  }
35
35
  }
@@ -18,6 +18,7 @@ export const esLintConfigAIDCToolkit: ConfigWithExtends = {
18
18
  "@typescript-eslint/max-params": "off",
19
19
  "@typescript-eslint/no-empty-function": "off",
20
20
  "@typescript-eslint/no-empty-object-type": "off",
21
+ "@typescript-eslint/no-magic-numbers": "off",
21
22
  "@typescript-eslint/no-unnecessary-type-parameters": "off",
22
23
  "@typescript-eslint/unbound-method": ["error", {
23
24
  ignoreStatic: true
@@ -38,6 +39,7 @@ export const esLintConfigAIDCToolkit: ConfigWithExtends = {
38
39
  delimiter: "semi"
39
40
  }
40
41
  }],
42
+ "@stylistic/no-trailing-spaces": ["warn"],
41
43
  "@stylistic/operator-linebreak": ["error", "after"],
42
44
  "@stylistic/quotes": ["error", "double"],
43
45
  "@stylistic/semi": ["error", "always"],
@@ -53,6 +55,12 @@ export const esLintConfigAIDCToolkit: ConfigWithExtends = {
53
55
  }],
54
56
  "@stylistic/object-property-newline": "error",
55
57
 
58
+ "jsdoc/require-description": ["warn", {
59
+ contexts: ["ClassDeclaration", "ClassProperty", "FunctionDeclaration", "MethodDefinition", "TSEnumDeclaration", "TSInterfaceDeclaration", "TSModuleDeclaration", "TSTypeAliasDeclaration"]
60
+ }],
61
+ "jsdoc/require-jsdoc": ["warn", {
62
+ contexts: ["ClassDeclaration", "ClassProperty", "FunctionDeclaration", "MethodDefinition", "TSEnumDeclaration", "TSInterfaceDeclaration", "TSModuleDeclaration", "TSTypeAliasDeclaration"]
63
+ }],
56
64
  "jsdoc/require-returns": ["warn", {
57
65
  checkGetters: false
58
66
  }],
package/tsconfig.json CHANGED
@@ -17,7 +17,7 @@
17
17
  "forceConsistentCasingInFileNames": true,
18
18
 
19
19
  // Language and environment.
20
- "target": "es2020",
20
+ "target": "esnext",
21
21
  "useDefineForClassFields": true,
22
22
 
23
23
  // Completeness.