@jsse/eslint-config 0.6.2 → 0.7.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/CHANGELOG.md +12 -0
- package/README.md +1 -6
- package/dist/cli.js +1 -1
- package/dist/{version-B1I0SM9v.js → const-7b74P6Qm.js} +4 -4
- package/dist/index.d.ts +660 -401
- package/dist/index.js +12 -93
- package/package.json +26 -24
package/CHANGELOG.md
CHANGED
package/README.md
CHANGED
|
@@ -62,12 +62,7 @@ module.exports = require("@jsse/eslint-config").jsse({
|
|
|
62
62
|
For example:
|
|
63
63
|
|
|
64
64
|
```json
|
|
65
|
-
{
|
|
66
|
-
"scripts": {
|
|
67
|
-
"lint": "eslint .",
|
|
68
|
-
"lint:fix": "eslint . --fix"
|
|
69
|
-
}
|
|
70
|
-
}
|
|
65
|
+
{ "scripts": { "lint": "eslint .", "lint:fix": "eslint . --fix" } }
|
|
71
66
|
```
|
|
72
67
|
|
|
73
68
|
### Type Aware Rules
|
package/dist/cli.js
CHANGED
|
@@ -1,4 +1,4 @@
|
|
|
1
|
-
import {
|
|
1
|
+
import { r as VERSION, t as DEBUG$1 } from "./const-7b74P6Qm.js";
|
|
2
2
|
import process$1 from "node:process";
|
|
3
3
|
import fs from "node:fs";
|
|
4
4
|
//#region node_modules/.pnpm/cac@7.0.0/node_modules/cac/dist/index.js
|
|
@@ -1,4 +1,7 @@
|
|
|
1
1
|
import process from "node:process";
|
|
2
|
+
//#region src/_generated/version.ts
|
|
3
|
+
const VERSION = "0.7.1";
|
|
4
|
+
//#endregion
|
|
2
5
|
//#region src/const.ts
|
|
3
6
|
/**
|
|
4
7
|
* CONSTANTS LISTS AND REFERENCES OH MY!
|
|
@@ -33,7 +36,4 @@ const SLOW_RULES = [
|
|
|
33
36
|
"unicorn/no-unnecessary-polyfills"
|
|
34
37
|
];
|
|
35
38
|
//#endregion
|
|
36
|
-
|
|
37
|
-
const VERSION = "0.6.2";
|
|
38
|
-
//#endregion
|
|
39
|
-
export { DEBUG as n, SLOW_RULES as r, VERSION as t };
|
|
39
|
+
export { SLOW_RULES as n, VERSION as r, DEBUG as t };
|