@newsteam/eslint-config 0.0.153 → 0.0.154

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.
@@ -300,44 +300,57 @@ var rules = {
300
300
  "error",
301
301
  {
302
302
  default: [
303
+ // Index signature
303
304
  "signature",
305
+ "call-signature",
304
306
  // Fields
305
307
  "public-static-field",
306
308
  "protected-static-field",
307
309
  "private-static-field",
310
+ "#private-static-field",
308
311
  "public-decorated-field",
309
312
  "protected-decorated-field",
310
313
  "private-decorated-field",
311
314
  "public-instance-field",
312
315
  "protected-instance-field",
313
316
  "private-instance-field",
317
+ "#private-instance-field",
314
318
  "public-abstract-field",
315
319
  "protected-abstract-field",
316
- "private-abstract-field",
317
- // Abstract Methods
318
- "public-abstract-method",
319
- "protected-abstract-method",
320
- "private-abstract-method",
320
+ "public-field",
321
+ "protected-field",
322
+ "private-field",
323
+ "#private-field",
324
+ "static-field",
325
+ "instance-field",
326
+ "abstract-field",
327
+ "decorated-field",
328
+ "field",
329
+ // Static initialization
330
+ "static-initialization",
321
331
  // Constructors
322
332
  "public-constructor",
323
333
  "protected-constructor",
324
334
  "private-constructor",
335
+ "constructor",
325
336
  // Getters
326
337
  "public-static-get",
327
338
  "protected-static-get",
328
339
  "private-static-get",
340
+ "#private-static-get",
329
341
  "public-decorated-get",
330
342
  "protected-decorated-get",
331
343
  "private-decorated-get",
332
344
  "public-instance-get",
333
345
  "protected-instance-get",
334
346
  "private-instance-get",
347
+ "#private-instance-get",
335
348
  "public-abstract-get",
336
349
  "protected-abstract-get",
337
- "private-abstract-get",
338
350
  "public-get",
339
351
  "protected-get",
340
352
  "private-get",
353
+ "#private-get",
341
354
  "static-get",
342
355
  "instance-get",
343
356
  "abstract-get",
@@ -347,18 +360,20 @@ var rules = {
347
360
  "public-static-set",
348
361
  "protected-static-set",
349
362
  "private-static-set",
363
+ "#private-static-set",
350
364
  "public-decorated-set",
351
365
  "protected-decorated-set",
352
366
  "private-decorated-set",
353
367
  "public-instance-set",
354
368
  "protected-instance-set",
355
369
  "private-instance-set",
370
+ "#private-instance-set",
356
371
  "public-abstract-set",
357
372
  "protected-abstract-set",
358
- "private-abstract-set",
359
373
  "public-set",
360
374
  "protected-set",
361
375
  "private-set",
376
+ "#private-set",
362
377
  "static-set",
363
378
  "instance-set",
364
379
  "abstract-set",
@@ -368,12 +383,25 @@ var rules = {
368
383
  "public-static-method",
369
384
  "protected-static-method",
370
385
  "private-static-method",
386
+ "#private-static-method",
371
387
  "public-decorated-method",
372
388
  "protected-decorated-method",
373
389
  "private-decorated-method",
374
390
  "public-instance-method",
375
391
  "protected-instance-method",
376
- "private-instance-method"
392
+ "private-instance-method",
393
+ "#private-instance-method",
394
+ "public-abstract-method",
395
+ "protected-abstract-method",
396
+ "public-method",
397
+ "protected-method",
398
+ "private-method",
399
+ "#private-method",
400
+ "static-method",
401
+ "instance-method",
402
+ "abstract-method",
403
+ "decorated-method",
404
+ "method"
377
405
  ]
378
406
  }
379
407
  ],
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@newsteam/eslint-config",
3
- "version": "0.0.153",
3
+ "version": "0.0.154",
4
4
  "description": "Shared config for eslint",
5
5
  "main": "./lib/cjs/index.js",
6
6
  "types": "./lib/cjs/index.d.ts",
@@ -51,8 +51,8 @@
51
51
  "@types/modernizr": "3.5.3",
52
52
  "@types/node": "18.11.9",
53
53
  "@types/react": "18.0.25",
54
- "@typescript-eslint/eslint-plugin": "5.44.0",
55
- "@typescript-eslint/parser": "5.44.0",
54
+ "@typescript-eslint/eslint-plugin": "5.45.0",
55
+ "@typescript-eslint/parser": "5.45.0",
56
56
  "eslint": "8.28.0",
57
57
  "eslint-find-rules": "4.1.0",
58
58
  "eslint-import-resolver-typescript": "3.5.2",
@@ -78,15 +78,15 @@
78
78
  "eslint-plugin-react-perf": "3.3.1",
79
79
  "eslint-plugin-security": "1.5.0",
80
80
  "eslint-plugin-sort-keys-fix": "1.1.2",
81
- "eslint-plugin-unicorn": "45.0.0",
81
+ "eslint-plugin-unicorn": "45.0.1",
82
82
  "json-schema": "0.4.0",
83
83
  "postcss-nesting": "10.2.0",
84
84
  "react": "18.2.0",
85
85
  "typescript": "4.9.3"
86
86
  },
87
87
  "peerDependencies": {
88
- "@typescript-eslint/eslint-plugin": "5.44.0",
89
- "@typescript-eslint/parser": "5.44.0",
88
+ "@typescript-eslint/eslint-plugin": "5.45.0",
89
+ "@typescript-eslint/parser": "5.45.0",
90
90
  "eslint": "8.28.0",
91
91
  "eslint-plugin-array-func": "3.1.7",
92
92
  "eslint-plugin-css-modules": "2.11.0",
@@ -109,7 +109,7 @@
109
109
  "eslint-plugin-react-perf": "3.3.1",
110
110
  "eslint-plugin-security": "1.5.0",
111
111
  "eslint-plugin-sort-keys-fix": "1.1.2",
112
- "eslint-plugin-unicorn": "45.0.0",
112
+ "eslint-plugin-unicorn": "45.0.1",
113
113
  "eslint-plugin-you-dont-need-lodash-underscore": "6.12.0",
114
114
  "json-schema": "0.4.0",
115
115
  "typescript": "4.9.3"