@jabworks/eslint-plugin 1.0.4 → 1.0.5

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,11 @@
1
1
  # @jabworks/eslint-plugin
2
2
 
3
+ ## 1.0.5
4
+
5
+ ### Patch Changes
6
+
7
+ - Update README.md
8
+
3
9
  ## 1.0.4
4
10
 
5
11
  ### Patch Changes
package/README.md CHANGED
@@ -29,15 +29,15 @@ Add the plugin to your ESLint configuration. Example using the flat config forma
29
29
 
30
30
  ```js
31
31
  // eslint.config.js or eslint.config.mjs
32
- import { plugin as jablabPlugin } from '@jabworks/eslint-plugin';
32
+ import { plugin as jabworksPlugin } from '@jabworks/eslint-plugin';
33
33
 
34
34
  export default [
35
- ...jablabPlugin.configs.base,
35
+ ...jabworksPlugin.configs.base,
36
36
  // or for React/Next.js/TypeScript/Vitest:
37
- // ...jablabPlugin.configs.react,
38
- // ...jablabPlugin.configs.next,
39
- // ...jablabPlugin.configs.typescript,
40
- // ...jablabPlugin.configs.vitest,
37
+ // ...jabworksPlugin.configs.react,
38
+ // ...jabworksPlugin.configs.next,
39
+ // ...jabworksPlugin.configs.typescript,
40
+ // ...jabworksPlugin.configs.vitest,
41
41
  ];
42
42
  ```
43
43
 
package/package.json CHANGED
@@ -60,5 +60,5 @@
60
60
  "typescript": ">=5.8.0",
61
61
  "typescript-eslint": ">=8.33.0"
62
62
  },
63
- "version": "1.0.4"
63
+ "version": "1.0.5"
64
64
  }