@jsse/eslint-config 0.9.0 → 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 CHANGED
@@ -1,5 +1,13 @@
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
+
3
11
  ## 0.9.0
4
12
 
5
13
  ### Minor Changes
package/README.md CHANGED
@@ -82,7 +82,9 @@ export default jsse({
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. |