@zemd/eslint-ts 2.0.1 → 2.0.3
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/dist/index.mjs +1 -1
- package/dist/index.mjs.map +1 -1
- package/package.json +9 -9
package/dist/index.mjs
CHANGED
|
@@ -1,2 +1,2 @@
|
|
|
1
|
-
import e from"@typescript-eslint/eslint-plugin";import t from"@typescript-eslint/parser";import{GLOB_TS as n,GLOB_TSX as r}from"@zemd/eslint-common";import i from"@zemd/eslint-js";export*from"@zemd/eslint-js";const a={"@typescript-eslint/consistent-type-exports":[`error`,{fixMixedExportsWithInlineTypeSpecifier:!0}],"@typescript-eslint/consistent-type-imports":[`error`,{fixStyle:`inline-type-imports`}],"@typescript-eslint/no-unused-vars":[`error`,{args:`all`,argsIgnorePattern:`^_`,caughtErrors:`all`,caughtErrorsIgnorePattern:`^_`,destructuredArrayIgnorePattern:`^_`,varsIgnorePattern:`^_`,ignoreRestSiblings:!0}],"@typescript-eslint/explicit-module-boundary-types":[`error`],"@typescript-eslint/method-signature-style":[`error`],"@typescript-eslint/no-import-type-side-effects":[`error`],"@typescript-eslint/no-useless-empty-export":[`error`],"@typescript-eslint/promise-function-async":[`error`],"@typescript-eslint/require-array-sort-compare":[`error`],"@typescript-eslint/restrict-template-expressions":[`error`,{allow:[{name:[`Error`,`URL`,`URLSearchParams`],from:`lib`}],allowAny:!0,allowBoolean:!0,allowNullish:!0,allowNumber:!0,allowRegExp:!0}],"@typescript-eslint/no-unsafe-call":[`off`],"@typescript-eslint/no-explicit-any":[`off`],"@typescript-eslint/no-unsafe-return":[`off`],"@typescript-eslint/no-unsafe-assignment":[`off`],"@typescript-eslint/no-unsafe-member-access":[`off`],"@typescript-eslint/no-unsafe-argument":[`off`],"@typescript-eslint/no-empty-object-type":[`off`],"@typescript-eslint/no-unnecessary-type-parameters":[`off`],"@typescript-eslint/require-await":[`off`],"@typescript-eslint/strict-void-return":[`error`]}
|
|
1
|
+
import e from"@typescript-eslint/eslint-plugin";import t from"@typescript-eslint/parser";import{GLOB_TS as n,GLOB_TSX as r}from"@zemd/eslint-common";import i from"@zemd/eslint-js";export*from"@zemd/eslint-js";const a={"@typescript-eslint/consistent-type-exports":[`error`,{fixMixedExportsWithInlineTypeSpecifier:!0}],"@typescript-eslint/consistent-type-imports":[`error`,{fixStyle:`inline-type-imports`}],"@typescript-eslint/no-unused-vars":[`error`,{args:`all`,argsIgnorePattern:`^_`,caughtErrors:`all`,caughtErrorsIgnorePattern:`^_`,destructuredArrayIgnorePattern:`^_`,varsIgnorePattern:`^_`,ignoreRestSiblings:!0}],"@typescript-eslint/explicit-module-boundary-types":[`error`],"@typescript-eslint/method-signature-style":[`error`],"@typescript-eslint/no-import-type-side-effects":[`error`],"@typescript-eslint/no-useless-empty-export":[`error`],"@typescript-eslint/promise-function-async":[`error`],"@typescript-eslint/require-array-sort-compare":[`error`],"@typescript-eslint/restrict-template-expressions":[`error`,{allow:[{name:[`Error`,`URL`,`URLSearchParams`],from:`lib`}],allowAny:!0,allowBoolean:!0,allowNullish:!0,allowNumber:!0,allowRegExp:!0}],"@typescript-eslint/no-unsafe-call":[`off`],"@typescript-eslint/no-explicit-any":[`off`],"@typescript-eslint/no-unsafe-return":[`off`],"@typescript-eslint/no-unsafe-assignment":[`off`],"@typescript-eslint/no-unsafe-member-access":[`off`],"@typescript-eslint/no-unsafe-argument":[`off`],"@typescript-eslint/no-empty-object-type":[`off`],"@typescript-eslint/no-unnecessary-type-parameters":[`off`],"@typescript-eslint/require-await":[`off`],"@typescript-eslint/strict-void-return":[`error`]},o={plugins:{"@typescript-eslint":e},parser:t,rules:{...e.configs[`strict-type-checked`].rules,...a,"no-unused-vars":[`off`],"no-dupe-class-members":[`off`]}};function s({files:e=[n,r],parserOptions:t}={}){return[{name:`zemd/typescript/setup`,files:e,languageOptions:{parser:o.parser,parserOptions:{ecmaFeatures:{modules:!0},project:!0,...t}}},{name:`zemd/typescript/rules`,files:e,plugins:o.plugins,rules:o.rules}]}function c(...e){return[...i(),...s(...e)]}export{c as default,s as typescript};
|
|
2
2
|
//# sourceMappingURL=index.mjs.map
|
package/dist/index.mjs.map
CHANGED
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"index.mjs","names":["ts"],"sources":["../src/rules/typescript.ts","../src/index.ts"],"sourcesContent":["import type { ESLint, Linter } from \"eslint\";\nimport plugin from \"@typescript-eslint/eslint-plugin\";\nimport parser from \"@typescript-eslint/parser\";\nimport type { Feature } from \"@zemd/eslint-common\";\n\nexport const rules: Linter.RulesRecord = {\n \"@typescript-eslint/consistent-type-exports\": [\n // https://typescript-eslint.io/rules/consistent-type-exports/\n \"error\",\n { fixMixedExportsWithInlineTypeSpecifier: true },\n ],\n \"@typescript-eslint/consistent-type-imports\": [\n // https://typescript-eslint.io/rules/consistent-type-imports/\n // requires 'emitDecoratorMetadata' in tsconfig to be **true**\n \"error\",\n { fixStyle: \"inline-type-imports\" },\n ],\n \"@typescript-eslint/no-unused-vars\": [\n \"error\",\n {\n args: \"all\",\n argsIgnorePattern: \"^_\",\n caughtErrors: \"all\",\n caughtErrorsIgnorePattern: \"^_\",\n destructuredArrayIgnorePattern: \"^_\",\n varsIgnorePattern: \"^_\",\n ignoreRestSiblings: true,\n },\n ],\n // \"@typescript-eslint/explicit-function-return-type\": [\n // // https://typescript-eslint.io/rules/explicit-function-return-type/\n // \"error\",\n // { allowIIFEs: true },\n // ],\n \"@typescript-eslint/explicit-module-boundary-types\": [\n // https://typescript-eslint.io/rules/explicit-module-boundary-types/\n \"error\",\n ],\n \"@typescript-eslint/method-signature-style\": [\n // https://typescript-eslint.io/rules/method-signature-style/\n \"error\",\n ],\n \"@typescript-eslint/no-import-type-side-effects\": [\n // https://typescript-eslint.io/rules/no-import-type-side-effects/\n \"error\",\n ],\n \"@typescript-eslint/no-useless-empty-export\": [\n // https://typescript-eslint.io/rules/no-useless-empty-export/\n \"error\",\n ],\n \"@typescript-eslint/promise-function-async\": [\n // https://typescript-eslint.io/rules/promise-function-async/\n \"error\",\n ],\n \"@typescript-eslint/require-array-sort-compare\": [\n // https://typescript-eslint.io/rules/require-array-sort-compare/\n \"error\",\n ],\n \"@typescript-eslint/restrict-template-expressions\": [\n // https://typescript-eslint.io/rules/restrict-template-expressions/\n \"error\",\n {\n allow: [{ name: [\"Error\", \"URL\", \"URLSearchParams\"], from: \"lib\" }],\n allowAny: true,\n allowBoolean: true,\n allowNullish: true,\n allowNumber: true,\n allowRegExp: true,\n },\n ],\n \"@typescript-eslint/no-unsafe-call\": [\n // https://typescript-eslint.io/rules/no-unsafe-call/\n // should not be forced by default, turn on when you really need it\n \"off\",\n ],\n \"@typescript-eslint/no-explicit-any\": [\n // https://typescript-eslint.io/rules/no-explicit-any/\n // should not be forced by default, turn on when you really need it\n \"off\",\n ],\n \"@typescript-eslint/no-unsafe-return\": [\n // https://typescript-eslint.io/rules/no-unsafe-return/\n // should not be forced by default, turn on when you really need it\n \"off\",\n ],\n \"@typescript-eslint/no-unsafe-assignment\": [\n // https://typescript-eslint.io/rules/no-unsafe-assignment/\n // should not be forced by default, turn on when you really need it\n \"off\",\n ],\n \"@typescript-eslint/no-unsafe-member-access\": [\n // https://typescript-eslint.io/rules/no-unsafe-member-access/\n // should not be forced by default, turn on when you really need it\n \"off\",\n ],\n \"@typescript-eslint/no-unsafe-argument\": [\n // https://typescript-eslint.io/rules/no-unsafe-argument/\n // should not be forced by default, turn on when you really need it\n \"off\",\n ],\n \"@typescript-eslint/no-empty-object-type\": [\n // https://typescript-eslint.io/rules/no-empty-object-type/\n // should not be forced by default, turn on when you really need it\n \"off\",\n ],\n \"@typescript-eslint/no-unnecessary-type-parameters\": [\n // should not be forced by default, turn on when you really need it\n \"off\",\n ],\n \"@typescript-eslint/require-await\": [\n // should not be forced by default, turn on when you really need it\n \"off\",\n ],\n \"@typescript-eslint/strict-void-return\": [\n // https://typescript-eslint.io/rules/strict-void-return/\n // added since @typescript-eslint/eslint-plugin@8.53.0 (2026-01-12)\n \"error\",\n ],\n};\n\nconst feature: Feature = {\n plugins: {\n \"@typescript-eslint\": plugin as unknown as ESLint.Plugin,\n },\n parser,\n // more about @typescript-eslint/eslint-plugin rules see:\n // - https://typescript-eslint.io/linting/configs#recommended-configurations\n // - https://github.com/typescript-eslint/typescript-eslint/blob/main/packages/eslint-plugin/src/configs/strict.ts\n rules: {\n ...(plugin.configs[\"strict-type-checked\"]!.rules as Linter.RulesRecord),\n ...rules,\n // disabling default eslint rule and using @typescript-eslint/no-unused-vars instead\n // to avoid unnecessary errors for type definitions\n \"no-unused-vars\": [\"off\"],\n \"no-dupe-class-members\": [\"off\"],\n },\n};\n\nexport default feature;\n","import type { Linter } from \"eslint\";\nimport ts from \"./rules/typescript.js\";\nimport { GLOB_TS, GLOB_TSX } from \"@zemd/eslint-common\";\nimport javascript from \"@zemd/eslint-js\";\nimport type { ParserOptions } from \"@typescript-eslint/parser\";\n\nexport * from \"@zemd/eslint-js\";\n\ntype TypescriptOptions = {\n files: string[];\n parserOptions: ParserOptions;\n};\n\nexport function typescript({\n files = [GLOB_TS, GLOB_TSX],\n parserOptions,\n}: Partial<TypescriptOptions> = {}): Array<Linter.Config> {\n return [\n {\n // enabling parsing typescript files support\n name: \"zemd/typescript/setup\",\n files,\n languageOptions: {\n parser: ts.parser,\n parserOptions: {\n ecmaFeatures: { modules: true },\n project: true,\n ...parserOptions,\n },\n },\n },\n {\n name: \"zemd/typescript/rules\",\n files,\n plugins: ts.plugins,\n rules: ts.rules,\n },\n ];\n}\n\nexport default function all(...params: Parameters<typeof typescript>): Array<Linter.Config> {\n return [...javascript(), ...typescript(...params)];\n}\n"],"mappings":"iNAKA,MAAa,EAA4B,CACvC,6CAA8C,CAE5C,QACA,CAAE,uCAAwC,GAAM,CACjD,CACD,6CAA8C,CAG5C,QACA,CAAE,SAAU,sBAAuB,CACpC,CACD,oCAAqC,CACnC,QACA,CACE,KAAM,MACN,kBAAmB,KACnB,aAAc,MACd,0BAA2B,KAC3B,+BAAgC,KAChC,kBAAmB,KACnB,mBAAoB,GACrB,CACF,CAMD,oDAAqD,CAEnD,QACD,CACD,4CAA6C,CAE3C,QACD,CACD,iDAAkD,CAEhD,QACD,CACD,6CAA8C,CAE5C,QACD,CACD,4CAA6C,CAE3C,QACD,CACD,gDAAiD,CAE/C,QACD,CACD,mDAAoD,CAElD,QACA,CACE,MAAO,CAAC,CAAE,KAAM,CAAC,QAAS,MAAO,kBAAkB,CAAE,KAAM,MAAO,CAAC,CACnE,SAAU,GACV,aAAc,GACd,aAAc,GACd,YAAa,GACb,YAAa,GACd,CACF,CACD,oCAAqC,CAGnC,MACD,CACD,qCAAsC,CAGpC,MACD,CACD,sCAAuC,CAGrC,MACD,CACD,0CAA2C,CAGzC,MACD,CACD,6CAA8C,CAG5C,MACD,CACD,wCAAyC,CAGvC,MACD,CACD,0CAA2C,CAGzC,MACD,CACD,oDAAqD,CAEnD,MACD,CACD,mCAAoC,CAElC,MACD,CACD,wCAAyC,CAGvC,QACD,CACF,
|
|
1
|
+
{"version":3,"file":"index.mjs","names":["ts"],"sources":["../src/rules/typescript.ts","../src/index.ts"],"sourcesContent":["import type { ESLint, Linter } from \"eslint\";\nimport plugin from \"@typescript-eslint/eslint-plugin\";\nimport parser from \"@typescript-eslint/parser\";\nimport type { Feature } from \"@zemd/eslint-common\";\n\nexport const rules: Linter.RulesRecord = {\n \"@typescript-eslint/consistent-type-exports\": [\n // https://typescript-eslint.io/rules/consistent-type-exports/\n \"error\",\n { fixMixedExportsWithInlineTypeSpecifier: true },\n ],\n \"@typescript-eslint/consistent-type-imports\": [\n // https://typescript-eslint.io/rules/consistent-type-imports/\n // requires 'emitDecoratorMetadata' in tsconfig to be **true**\n \"error\",\n { fixStyle: \"inline-type-imports\" },\n ],\n \"@typescript-eslint/no-unused-vars\": [\n \"error\",\n {\n args: \"all\",\n argsIgnorePattern: \"^_\",\n caughtErrors: \"all\",\n caughtErrorsIgnorePattern: \"^_\",\n destructuredArrayIgnorePattern: \"^_\",\n varsIgnorePattern: \"^_\",\n ignoreRestSiblings: true,\n },\n ],\n // \"@typescript-eslint/explicit-function-return-type\": [\n // // https://typescript-eslint.io/rules/explicit-function-return-type/\n // \"error\",\n // { allowIIFEs: true },\n // ],\n \"@typescript-eslint/explicit-module-boundary-types\": [\n // https://typescript-eslint.io/rules/explicit-module-boundary-types/\n \"error\",\n ],\n \"@typescript-eslint/method-signature-style\": [\n // https://typescript-eslint.io/rules/method-signature-style/\n \"error\",\n ],\n \"@typescript-eslint/no-import-type-side-effects\": [\n // https://typescript-eslint.io/rules/no-import-type-side-effects/\n \"error\",\n ],\n \"@typescript-eslint/no-useless-empty-export\": [\n // https://typescript-eslint.io/rules/no-useless-empty-export/\n \"error\",\n ],\n \"@typescript-eslint/promise-function-async\": [\n // https://typescript-eslint.io/rules/promise-function-async/\n \"error\",\n ],\n \"@typescript-eslint/require-array-sort-compare\": [\n // https://typescript-eslint.io/rules/require-array-sort-compare/\n \"error\",\n ],\n \"@typescript-eslint/restrict-template-expressions\": [\n // https://typescript-eslint.io/rules/restrict-template-expressions/\n \"error\",\n {\n allow: [{ name: [\"Error\", \"URL\", \"URLSearchParams\"], from: \"lib\" }],\n allowAny: true,\n allowBoolean: true,\n allowNullish: true,\n allowNumber: true,\n allowRegExp: true,\n },\n ],\n \"@typescript-eslint/no-unsafe-call\": [\n // https://typescript-eslint.io/rules/no-unsafe-call/\n // should not be forced by default, turn on when you really need it\n \"off\",\n ],\n \"@typescript-eslint/no-explicit-any\": [\n // https://typescript-eslint.io/rules/no-explicit-any/\n // should not be forced by default, turn on when you really need it\n \"off\",\n ],\n \"@typescript-eslint/no-unsafe-return\": [\n // https://typescript-eslint.io/rules/no-unsafe-return/\n // should not be forced by default, turn on when you really need it\n \"off\",\n ],\n \"@typescript-eslint/no-unsafe-assignment\": [\n // https://typescript-eslint.io/rules/no-unsafe-assignment/\n // should not be forced by default, turn on when you really need it\n \"off\",\n ],\n \"@typescript-eslint/no-unsafe-member-access\": [\n // https://typescript-eslint.io/rules/no-unsafe-member-access/\n // should not be forced by default, turn on when you really need it\n \"off\",\n ],\n \"@typescript-eslint/no-unsafe-argument\": [\n // https://typescript-eslint.io/rules/no-unsafe-argument/\n // should not be forced by default, turn on when you really need it\n \"off\",\n ],\n \"@typescript-eslint/no-empty-object-type\": [\n // https://typescript-eslint.io/rules/no-empty-object-type/\n // should not be forced by default, turn on when you really need it\n \"off\",\n ],\n \"@typescript-eslint/no-unnecessary-type-parameters\": [\n // should not be forced by default, turn on when you really need it\n \"off\",\n ],\n \"@typescript-eslint/require-await\": [\n // should not be forced by default, turn on when you really need it\n \"off\",\n ],\n \"@typescript-eslint/strict-void-return\": [\n // https://typescript-eslint.io/rules/strict-void-return/\n // added since @typescript-eslint/eslint-plugin@8.53.0 (2026-01-12)\n \"error\",\n ],\n};\n\nconst feature: Feature = {\n plugins: {\n \"@typescript-eslint\": plugin as unknown as ESLint.Plugin,\n },\n parser,\n // more about @typescript-eslint/eslint-plugin rules see:\n // - https://typescript-eslint.io/linting/configs#recommended-configurations\n // - https://github.com/typescript-eslint/typescript-eslint/blob/main/packages/eslint-plugin/src/configs/strict.ts\n rules: {\n ...(plugin.configs[\"strict-type-checked\"]!.rules as Linter.RulesRecord),\n ...rules,\n // disabling default eslint rule and using @typescript-eslint/no-unused-vars instead\n // to avoid unnecessary errors for type definitions\n \"no-unused-vars\": [\"off\"],\n \"no-dupe-class-members\": [\"off\"],\n },\n};\n\nexport default feature;\n","import type { Linter } from \"eslint\";\nimport ts from \"./rules/typescript.js\";\nimport { GLOB_TS, GLOB_TSX } from \"@zemd/eslint-common\";\nimport javascript from \"@zemd/eslint-js\";\nimport type { ParserOptions } from \"@typescript-eslint/parser\";\n\nexport * from \"@zemd/eslint-js\";\n\ntype TypescriptOptions = {\n files: string[];\n parserOptions: ParserOptions;\n};\n\nexport function typescript({\n files = [GLOB_TS, GLOB_TSX],\n parserOptions,\n}: Partial<TypescriptOptions> = {}): Array<Linter.Config> {\n return [\n {\n // enabling parsing typescript files support\n name: \"zemd/typescript/setup\",\n files,\n languageOptions: {\n parser: ts.parser,\n parserOptions: {\n ecmaFeatures: { modules: true },\n project: true,\n ...parserOptions,\n },\n },\n },\n {\n name: \"zemd/typescript/rules\",\n files,\n plugins: ts.plugins,\n rules: ts.rules,\n },\n ];\n}\n\nexport default function all(...params: Parameters<typeof typescript>): Array<Linter.Config> {\n return [...javascript(), ...typescript(...params)];\n}\n"],"mappings":"iNAKA,MAAa,EAA4B,CACvC,6CAA8C,CAE5C,QACA,CAAE,uCAAwC,GAAM,CACjD,CACD,6CAA8C,CAG5C,QACA,CAAE,SAAU,sBAAuB,CACpC,CACD,oCAAqC,CACnC,QACA,CACE,KAAM,MACN,kBAAmB,KACnB,aAAc,MACd,0BAA2B,KAC3B,+BAAgC,KAChC,kBAAmB,KACnB,mBAAoB,GACrB,CACF,CAMD,oDAAqD,CAEnD,QACD,CACD,4CAA6C,CAE3C,QACD,CACD,iDAAkD,CAEhD,QACD,CACD,6CAA8C,CAE5C,QACD,CACD,4CAA6C,CAE3C,QACD,CACD,gDAAiD,CAE/C,QACD,CACD,mDAAoD,CAElD,QACA,CACE,MAAO,CAAC,CAAE,KAAM,CAAC,QAAS,MAAO,kBAAkB,CAAE,KAAM,MAAO,CAAC,CACnE,SAAU,GACV,aAAc,GACd,aAAc,GACd,YAAa,GACb,YAAa,GACd,CACF,CACD,oCAAqC,CAGnC,MACD,CACD,qCAAsC,CAGpC,MACD,CACD,sCAAuC,CAGrC,MACD,CACD,0CAA2C,CAGzC,MACD,CACD,6CAA8C,CAG5C,MACD,CACD,wCAAyC,CAGvC,MACD,CACD,0CAA2C,CAGzC,MACD,CACD,oDAAqD,CAEnD,MACD,CACD,mCAAoC,CAElC,MACD,CACD,wCAAyC,CAGvC,QACD,CACF,CAEK,EAAmB,CACvB,QAAS,CACP,qBAAsB,EACvB,CACD,SAIA,MAAO,CACL,GAAI,EAAO,QAAQ,uBAAwB,MAC3C,GAAG,EAGH,iBAAkB,CAAC,MAAM,CACzB,wBAAyB,CAAC,MAAM,CACjC,CACF,CC3HD,SAAgB,EAAW,CACzB,QAAQ,CAAC,EAAS,EAAS,CAC3B,iBAC8B,EAAE,CAAwB,CACxD,MAAO,CACL,CAEE,KAAM,wBACN,QACA,gBAAiB,CACf,OAAQA,EAAG,OACX,cAAe,CACb,aAAc,CAAE,QAAS,GAAM,CAC/B,QAAS,GACT,GAAG,EACJ,CACF,CACF,CACD,CACE,KAAM,wBACN,QACA,QAASA,EAAG,QACZ,MAAOA,EAAG,MACX,CACF,CAGH,SAAwB,EAAI,GAAG,EAA6D,CAC1F,MAAO,CAAC,GAAG,GAAY,CAAE,GAAG,EAAW,GAAG,EAAO,CAAC"}
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@zemd/eslint-ts",
|
|
3
|
-
"version": "2.0.
|
|
3
|
+
"version": "2.0.3",
|
|
4
4
|
"license": "Apache-2.0",
|
|
5
5
|
"description": "Shared ESLint config for typescript projects",
|
|
6
6
|
"keywords": [
|
|
@@ -17,7 +17,7 @@
|
|
|
17
17
|
"author": {
|
|
18
18
|
"name": "Dmytro Zelenetskyi",
|
|
19
19
|
"email": "dmytro.zelenetskyi@gmail.com",
|
|
20
|
-
"url": "https://
|
|
20
|
+
"url": "https://zemd.dev"
|
|
21
21
|
},
|
|
22
22
|
"homepage": "https://github.com/zemd/eslint-flat-config",
|
|
23
23
|
"repository": {
|
|
@@ -41,19 +41,19 @@
|
|
|
41
41
|
"module": "./dist/index.mjs",
|
|
42
42
|
"types": "./dist/index.d.mts",
|
|
43
43
|
"peerDependencies": {
|
|
44
|
-
"eslint": ">=9.2.0"
|
|
44
|
+
"eslint": ">=9.2.0 || >=10.0.0"
|
|
45
45
|
},
|
|
46
46
|
"dependencies": {
|
|
47
|
-
"@typescript-eslint/eslint-plugin": "^8.
|
|
48
|
-
"@typescript-eslint/parser": "^8.
|
|
49
|
-
"@zemd/eslint-common": "2.0.
|
|
50
|
-
"@zemd/eslint-js": "2.0.
|
|
47
|
+
"@typescript-eslint/eslint-plugin": "^8.56.0",
|
|
48
|
+
"@typescript-eslint/parser": "^8.56.0",
|
|
49
|
+
"@zemd/eslint-common": "2.0.1",
|
|
50
|
+
"@zemd/eslint-js": "2.0.3"
|
|
51
51
|
},
|
|
52
52
|
"devDependencies": {
|
|
53
53
|
"@types/eslint": "^9.6.1",
|
|
54
54
|
"@zemd/tsconfig": "^1.4.0",
|
|
55
|
-
"eslint": "^
|
|
56
|
-
"tsdown": "^0.20.
|
|
55
|
+
"eslint": "^10.0.0",
|
|
56
|
+
"tsdown": "^0.20.3",
|
|
57
57
|
"typescript": "^5.9.3"
|
|
58
58
|
},
|
|
59
59
|
"scripts": {
|