@jsse/eslint-config 0.8.7 → 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/CHANGELOG.md +14 -0
- package/README.md +3 -1
- package/dist/cli.js +28 -28
- package/dist/fixable-rules-map-DICjDbU8.d.ts +17092 -0
- package/dist/fixable-rules-map-dNndx2ig.js +677 -0
- package/dist/fixable.d.ts +6 -0
- package/dist/fixable.js +5 -0
- package/dist/index.d.ts +4 -16610
- package/dist/index.js +53 -68
- package/dist/tsconfig.build.tsbuildinfo +1 -1
- package/package.json +24 -9
package/CHANGELOG.md
CHANGED
|
@@ -1,5 +1,19 @@
|
|
|
1
1
|
# @jsse/eslint-config
|
|
2
2
|
|
|
3
|
+
## 0.9.1
|
|
4
|
+
|
|
5
|
+
### Patch Changes
|
|
6
|
+
|
|
7
|
+
- 5f9905e: no await where not needed
|
|
8
|
+
- add eslint-node-test
|
|
9
|
+
- add node-test plugin from mr sindresorhus
|
|
10
|
+
|
|
11
|
+
## 0.9.0
|
|
12
|
+
|
|
13
|
+
### Minor Changes
|
|
14
|
+
|
|
15
|
+
- fixing eslint ts/react parsing conflicts and simplify react/ts setup
|
|
16
|
+
|
|
3
17
|
## 0.8.7
|
|
4
18
|
|
|
5
19
|
### Patch Changes
|
package/README.md
CHANGED
|
@@ -75,14 +75,16 @@ export default jsse({
|
|
|
75
75
|
| ----------------- | ------------------------------ | ------------------------------------------------------------------------------------------------------------------------- |
|
|
76
76
|
| `typescript` | auto-detect | Enabled when `typescript` is installed. Passing `{ tsconfig }` enables type-aware rules unless `typeAware: false` is set. |
|
|
77
77
|
| `typeAware` | `false` | Explicit override for type-aware TypeScript rules. |
|
|
78
|
-
| `react` | `false` | Enables React rules; accepts
|
|
78
|
+
| `react` | `false` | Enables React rules; accepts `reactRefresh` and `overrides`. TS/TSX parsing comes entirely from `typescript`/`tsconfig`. |
|
|
79
79
|
| `reactRefresh` | `true` when `react` is enabled | Set `false` to disable React Refresh rules. |
|
|
80
80
|
| `antfu` | `true` | Enables `eslint-plugin-antfu`; accepts `topLevelFunction` and `overrides`. |
|
|
81
81
|
| `demorgan` | `true` | Enables `eslint-plugin-de-morgan`; accepts `overrides`. |
|
|
82
82
|
| `e18e` | `true` | Enables `@e18e/eslint-plugin`. |
|
|
83
83
|
| `jsdoc` | `true` | Enables `eslint-plugin-jsdoc`; accepts `overrides`. |
|
|
84
84
|
| `n` | `true` | Enables Node.js rules from `eslint-plugin-n`; accepts `overrides`. |
|
|
85
|
+
| `nodeTest` | `false` | Enables `eslint-node-test` (Node.js built-in test runner rules); accepts `{ preset, overrides }`. |
|
|
85
86
|
| `unicorn` | `true` | Enables `eslint-plugin-unicorn`; accepts `{ preset, overrides }`. |
|
|
87
|
+
| `vitest` | auto-detect | Enabled when `vitest` is installed. Enables `@vitest/eslint-plugin`; accepts `overrides`. |
|
|
86
88
|
| `prettier` | `true` | Disables known ESLint/Prettier conflicts. This does not run Prettier. |
|
|
87
89
|
| `stylistic` | `true` | Enables selected `@stylistic` rules. Supports `indent`, `quotes`, and `jsx`. |
|
|
88
90
|
| `jsonc` | `true` | Enables JSON/JSONC rules. |
|