@jsse/eslint-config 0.1.8 → 0.1.9
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/cli.cjs +1 -1
- package/dist/cli.js +1 -1
- package/dist/index.cjs +16 -0
- package/dist/index.js +16 -0
- package/package.json +6 -8
package/dist/cli.cjs
CHANGED
package/dist/cli.js
CHANGED
package/dist/index.cjs
CHANGED
|
@@ -10860,13 +10860,29 @@ var markdown = async (options) => {
|
|
|
10860
10860
|
},
|
|
10861
10861
|
name: "jsse:markdown:rules",
|
|
10862
10862
|
rules: {
|
|
10863
|
+
"@typescript-eslint/await-thenable": "off",
|
|
10863
10864
|
"@typescript-eslint/consistent-type-imports": "off",
|
|
10865
|
+
"@typescript-eslint/dot-notation": "off",
|
|
10866
|
+
"@typescript-eslint/no-floating-promises": "off",
|
|
10867
|
+
"@typescript-eslint/no-for-in-array": "off",
|
|
10868
|
+
"@typescript-eslint/no-implied-eval": "off",
|
|
10869
|
+
"@typescript-eslint/no-misused-promises": "off",
|
|
10864
10870
|
"@typescript-eslint/no-namespace": "off",
|
|
10865
10871
|
"@typescript-eslint/no-redeclare": "off",
|
|
10866
10872
|
"@typescript-eslint/no-require-imports": "off",
|
|
10873
|
+
"@typescript-eslint/no-throw-literal": "off",
|
|
10874
|
+
"@typescript-eslint/no-unnecessary-type-assertion": "off",
|
|
10875
|
+
"@typescript-eslint/no-unsafe-argument": "off",
|
|
10876
|
+
"@typescript-eslint/no-unsafe-assignment": "off",
|
|
10877
|
+
"@typescript-eslint/no-unsafe-call": "off",
|
|
10878
|
+
"@typescript-eslint/no-unsafe-member-access": "off",
|
|
10879
|
+
"@typescript-eslint/no-unsafe-return": "off",
|
|
10867
10880
|
"@typescript-eslint/no-unused-vars": "off",
|
|
10868
10881
|
"@typescript-eslint/no-use-before-define": "off",
|
|
10869
10882
|
"@typescript-eslint/no-var-requires": "off",
|
|
10883
|
+
"@typescript-eslint/restrict-plus-operands": "off",
|
|
10884
|
+
"@typescript-eslint/restrict-template-expressions": "off",
|
|
10885
|
+
"@typescript-eslint/unbound-method": "off",
|
|
10870
10886
|
"no-alert": "off",
|
|
10871
10887
|
"no-console": "off",
|
|
10872
10888
|
"no-undef": "off",
|
package/dist/index.js
CHANGED
|
@@ -10792,13 +10792,29 @@ var markdown = async (options) => {
|
|
|
10792
10792
|
},
|
|
10793
10793
|
name: "jsse:markdown:rules",
|
|
10794
10794
|
rules: {
|
|
10795
|
+
"@typescript-eslint/await-thenable": "off",
|
|
10795
10796
|
"@typescript-eslint/consistent-type-imports": "off",
|
|
10797
|
+
"@typescript-eslint/dot-notation": "off",
|
|
10798
|
+
"@typescript-eslint/no-floating-promises": "off",
|
|
10799
|
+
"@typescript-eslint/no-for-in-array": "off",
|
|
10800
|
+
"@typescript-eslint/no-implied-eval": "off",
|
|
10801
|
+
"@typescript-eslint/no-misused-promises": "off",
|
|
10796
10802
|
"@typescript-eslint/no-namespace": "off",
|
|
10797
10803
|
"@typescript-eslint/no-redeclare": "off",
|
|
10798
10804
|
"@typescript-eslint/no-require-imports": "off",
|
|
10805
|
+
"@typescript-eslint/no-throw-literal": "off",
|
|
10806
|
+
"@typescript-eslint/no-unnecessary-type-assertion": "off",
|
|
10807
|
+
"@typescript-eslint/no-unsafe-argument": "off",
|
|
10808
|
+
"@typescript-eslint/no-unsafe-assignment": "off",
|
|
10809
|
+
"@typescript-eslint/no-unsafe-call": "off",
|
|
10810
|
+
"@typescript-eslint/no-unsafe-member-access": "off",
|
|
10811
|
+
"@typescript-eslint/no-unsafe-return": "off",
|
|
10799
10812
|
"@typescript-eslint/no-unused-vars": "off",
|
|
10800
10813
|
"@typescript-eslint/no-use-before-define": "off",
|
|
10801
10814
|
"@typescript-eslint/no-var-requires": "off",
|
|
10815
|
+
"@typescript-eslint/restrict-plus-operands": "off",
|
|
10816
|
+
"@typescript-eslint/restrict-template-expressions": "off",
|
|
10817
|
+
"@typescript-eslint/unbound-method": "off",
|
|
10802
10818
|
"no-alert": "off",
|
|
10803
10819
|
"no-console": "off",
|
|
10804
10820
|
"no-undef": "off",
|
package/package.json
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@jsse/eslint-config",
|
|
3
3
|
"type": "module",
|
|
4
|
-
"version": "0.1.
|
|
4
|
+
"version": "0.1.9",
|
|
5
5
|
"packageManager": "pnpm@8.15.4",
|
|
6
6
|
"description": "jsse eslint config",
|
|
7
7
|
"author": "jessekrubin <jessekrubin@gmail.com> (https://github.com/jessekrubin/)",
|
|
@@ -69,7 +69,7 @@
|
|
|
69
69
|
"eslint-plugin-antfu": "^2.1.2",
|
|
70
70
|
"eslint-plugin-eslint-comments": "^3.2.0",
|
|
71
71
|
"eslint-plugin-import-x": "^0.5.0",
|
|
72
|
-
"eslint-plugin-jsdoc": "^48.2.
|
|
72
|
+
"eslint-plugin-jsdoc": "^48.2.3",
|
|
73
73
|
"eslint-plugin-jsonc": "^2.15.0",
|
|
74
74
|
"eslint-plugin-markdown": "^4.0.1",
|
|
75
75
|
"eslint-plugin-n": "^16.6.2",
|
|
@@ -98,7 +98,7 @@
|
|
|
98
98
|
"@types/eslint": "^8.56.7",
|
|
99
99
|
"@types/eslint__js": "~8.42.3",
|
|
100
100
|
"@types/fs-extra": "^11.0.4",
|
|
101
|
-
"@types/node": "^20.12.
|
|
101
|
+
"@types/node": "^20.12.4",
|
|
102
102
|
"bumpp": "^9.4.0",
|
|
103
103
|
"cac": "^6.7.14",
|
|
104
104
|
"eslint": "^8.57.0",
|
|
@@ -114,17 +114,15 @@
|
|
|
114
114
|
"react": "~18.2.0",
|
|
115
115
|
"rimraf": "^5.0.5",
|
|
116
116
|
"tsup": "^8.0.2",
|
|
117
|
-
"tsx": "^4.7.
|
|
118
|
-
"typescript": "~5.4.
|
|
117
|
+
"tsx": "^4.7.2",
|
|
118
|
+
"typescript": "~5.4.4",
|
|
119
119
|
"vitest": "^1.4.0"
|
|
120
120
|
},
|
|
121
121
|
"prettier": "@jsse/prettier-config",
|
|
122
122
|
"scripts": {
|
|
123
123
|
"build": "pnpm gen && pnpm build-fast --dts && pnpm typecheck && eslint .",
|
|
124
124
|
"build-fast": "tsup src/index.ts src/cli.ts --format esm,cjs --clean",
|
|
125
|
-
"gen": "
|
|
126
|
-
"gen:types": "tsx scripts/typegen.ts && prettier -w src/dts/typegen.d.ts",
|
|
127
|
-
"gen:typesv2": "tsx scripts/typegen-v2.ts && prettier -w src/generated/",
|
|
125
|
+
"gen": "tsx scripts/gen.ts",
|
|
128
126
|
"dev": "tsup src/index.ts --format esm,cjs --watch",
|
|
129
127
|
"fmt": "prettier -w .",
|
|
130
128
|
"fmtc": "prettier --check .",
|