@saashub/qoq-eslint-v9-ts-vitest-rtl 1.1.2 → 1.1.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/README.md +6 -0
- package/bin/bin.cjs +2 -0
- package/package.json +10 -7
- package/rollup.bin.mjs +3 -0
package/README.md
CHANGED
@@ -43,6 +43,12 @@ export default [
|
|
43
43
|
];
|
44
44
|
```
|
45
45
|
|
46
|
+
## Rules preview with ESLint Config Inspector
|
47
|
+
|
48
|
+
To preview all rules defined by this config simply run:
|
49
|
+
|
50
|
+
npx -y @saashub/qoq-eslint-v9-ts-vitest-rtl
|
51
|
+
|
46
52
|
### Last but not least
|
47
53
|
|
48
54
|
_Feel free to join us, please read [General Contributing Guidelines](https://github.com/saashub-it/qoq/blob/master/.github/CONTRIBUTING.md)_
|
package/bin/bin.cjs
ADDED
package/package.json
CHANGED
@@ -1,6 +1,6 @@
|
|
1
1
|
{
|
2
2
|
"name": "@saashub/qoq-eslint-v9-ts-vitest-rtl",
|
3
|
-
"version": "1.1.
|
3
|
+
"version": "1.1.3",
|
4
4
|
"description": "Eslint flat config template for TS + Vitest + RTL",
|
5
5
|
"keywords": [
|
6
6
|
"eslint TypeScript + Vitest + RTL template",
|
@@ -28,24 +28,27 @@
|
|
28
28
|
"default": "./lib/index.mjs"
|
29
29
|
}
|
30
30
|
},
|
31
|
+
"bin": {
|
32
|
+
"@saashub/qoq-eslint-v9-ts-vitest-rtl": "./bin/bin.cjs"
|
33
|
+
},
|
31
34
|
"main": "./lib/index.cjs",
|
32
35
|
"module": "./lib/index.mjs",
|
33
36
|
"types": "./lib/index.d.js",
|
34
37
|
"scripts": {
|
35
|
-
"build": "rimraf ./lib && rollup -c --silent",
|
36
|
-
"inspect": "
|
38
|
+
"build": "rimraf ./lib && rollup -c rollup.config.mjs --silent && rimraf ./bin && rollup -c rollup.bin.mjs --silent",
|
39
|
+
"inspect": "node ./bin/bin.cjs",
|
37
40
|
"qoq:check": "qoq --check --skip-knip",
|
38
41
|
"qoq:fix": "qoq --fix --skip-knip",
|
39
42
|
"test": "vitest run --coverage"
|
40
43
|
},
|
41
44
|
"dependencies": {
|
42
|
-
"@saashub/qoq-eslint-v9-js-vitest-rtl": "^1.1.
|
43
|
-
"@saashub/qoq-eslint-v9-ts": "^1.1.
|
45
|
+
"@saashub/qoq-eslint-v9-js-vitest-rtl": "^1.1.3",
|
46
|
+
"@saashub/qoq-eslint-v9-ts": "^1.1.3",
|
44
47
|
"lodash": "4.17.21"
|
45
48
|
},
|
46
49
|
"devDependencies": {
|
47
50
|
"@rollup/plugin-typescript": "12.1.2",
|
48
|
-
"@saashub/qoq-cli": "^1.1.
|
51
|
+
"@saashub/qoq-cli": "^1.1.3",
|
49
52
|
"@types/eslint": "^9",
|
50
53
|
"@types/lodash": "4.17.16",
|
51
54
|
"@vitest/coverage-v8": "3.0.8",
|
@@ -64,5 +67,5 @@
|
|
64
67
|
"publishConfig": {
|
65
68
|
"access": "public"
|
66
69
|
},
|
67
|
-
"gitHead": "
|
70
|
+
"gitHead": "9dc12d7f63d267da1e5024592bc873e1444a4c82"
|
68
71
|
}
|
package/rollup.bin.mjs
ADDED