@kurateh/eslint-plugin 10.0.0 → 10.1.0

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/README.ko.md CHANGED
@@ -26,10 +26,10 @@ import kuratehPlugin from "@kurateh/eslint-plugin";
26
26
 
27
27
  export default [
28
28
  // 권장 설정 적용
29
- kuratehPlugin.configs.recommended,
29
+ ...kuratehPlugin.configs.recommended,
30
30
 
31
31
  // React 환경인 경우 추가 설정 적용
32
- kuratehPlugin.configs.react,
32
+ ...kuratehPlugin.configs.react,
33
33
 
34
34
  {
35
35
  plugins: {
package/README.md CHANGED
@@ -26,10 +26,10 @@ import kuratehPlugin from "@kurateh/eslint-plugin";
26
26
 
27
27
  export default [
28
28
  // Apply recommended configuration
29
- kuratehPlugin.configs.recommended,
29
+ ...kuratehPlugin.configs.recommended,
30
30
 
31
31
  // Apply additional configuration for React environments
32
- kuratehPlugin.configs.react,
32
+ ...kuratehPlugin.configs.react,
33
33
 
34
34
  {
35
35
  plugins: {
package/dist/index.cjs CHANGED
@@ -250,16 +250,6 @@ var config = [
250
250
  // eslint
251
251
  "no-console": 1,
252
252
  "object-shorthand": 1,
253
- "no-unused-vars": [
254
- 1,
255
- {
256
- ignoreRestSiblings: true,
257
- vars: "all",
258
- args: "after-used",
259
- argsIgnorePattern: "^_",
260
- varsIgnorePattern: "^_"
261
- }
262
- ],
263
253
  "no-param-reassign": [
264
254
  2,
265
255
  {
package/dist/index.js CHANGED
@@ -236,16 +236,6 @@ var config = [
236
236
  // eslint
237
237
  "no-console": 1,
238
238
  "object-shorthand": 1,
239
- "no-unused-vars": [
240
- 1,
241
- {
242
- ignoreRestSiblings: true,
243
- vars: "all",
244
- args: "after-used",
245
- argsIgnorePattern: "^_",
246
- varsIgnorePattern: "^_"
247
- }
248
- ],
249
239
  "no-param-reassign": [
250
240
  2,
251
241
  {
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@kurateh/eslint-plugin",
3
- "version": "10.0.0",
3
+ "version": "10.1.0",
4
4
  "type": "module",
5
5
  "author": {
6
6
  "name": "kurateh",