@jabworks/eslint-plugin 1.0.3 → 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,17 @@
1
1
  # @jabworks/eslint-plugin
2
2
 
3
+ ## 1.0.5
4
+
5
+ ### Patch Changes
6
+
7
+ - Update README.md
8
+
9
+ ## 1.0.4
10
+
11
+ ### Patch Changes
12
+
13
+ - Fix stylistic rule typo
14
+
3
15
  ## 1.0.3
4
16
 
5
17
  ### 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.3"
63
+ "version": "1.0.5"
64
64
  }
@@ -114,7 +114,7 @@ const rules = {
114
114
  * 🔧 Fixable - https://eslint.org/docs/latest/rules/prefer-arrow-callback
115
115
  */
116
116
  'prefer-arrow-callback': 'warn',
117
- '@stylelistic/spaced-comment': 'error',
117
+ '@stylistic/spaced-comment': 'error',
118
118
  };
119
119
 
120
120
  export default rules;