@open-turo/eslint-config-typescript 11.0.7 → 12.0.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.
@@ -0,0 +1,27 @@
1
+ # Breaking changes in v12
2
+
3
+ Several rules from `eslint-plugin-sonarjs` have changed their name. If you were reconfiguring some of them in your eslint
4
+ config you might have to update them to their new name.
5
+
6
+ The affected rules are the following:
7
+
8
+ - `sonarjs/sonar-block-scoped-var`
9
+ - `sonarjs/sonar-jsx-no-leaked-render`
10
+ - `sonarjs/sonar-max-lines`
11
+ - `sonarjs/sonar-max-lines-per-function`
12
+ - `sonarjs/sonar-max-params`
13
+ - `sonarjs/sonar-no-control-regex`
14
+ - `sonarjs/sonar-no-dupe-keys`
15
+ - `sonarjs/sonar-no-empty-character-class`
16
+ - `sonarjs/sonar-no-fallthrough`
17
+ - `sonarjs/sonar-no-invalid-regexp`
18
+ - `sonarjs/sonar-no-magic-numbers`
19
+ - `sonarjs/sonar-no-misleading-character-class`
20
+ - `sonarjs/sonar-no-regex-spaces`
21
+ - `sonarjs/sonar-no-unused-class-component-methods`
22
+ - `sonarjs/sonar-no-unused-vars`
23
+ - `sonarjs/sonar-prefer-optional-chain`
24
+ - `sonarjs/sonar-prefer-read-only-props`
25
+
26
+ See more details in https://community.sonarsource.com/t/eslint-plugin-sonarjs-prepending-rules-with-sonar-is-redundant-and-inconsistant/127330
27
+ and https://github.com/SonarSource/SonarJS/blob/master/packages/jsts/src/rules/CHANGELOG.md#2024-12-02-version-300.
package/index.js CHANGED
@@ -83,11 +83,11 @@ module.exports = {
83
83
  // Overlaps with @typescript-eslint/prefer-nullish-coalescing
84
84
  "sonarjs/prefer-nullish-coalescing": "off",
85
85
  // Overlaps with @typescript-eslint/no-unused-vars
86
- "sonarjs/sonar-no-unused-vars": "off",
86
+ "sonarjs/no-unused-vars": "off",
87
87
  // Overlaps with @typescript-eslint/prefer-optional-chain
88
- "sonarjs/sonar-prefer-optional-chain": "off",
88
+ "sonarjs/prefer-optional-chain": "off",
89
89
  // Useful for guarding against prop mutation in React, but too much of a lift as very rarely do we apply readonly/ReadonlyArray<T> to type definitions
90
- "sonarjs/sonar-prefer-read-only-props": "off",
90
+ "sonarjs/prefer-read-only-props": "off",
91
91
  // Noisy rule: if we wanted stricter linting of TODOs, we could use unicorn/expiring-todo-comments
92
92
  "sonarjs/todo-tag": "off",
93
93
  // A useful rule to consider for libraries to better document (and export) type definitions, but noisy in app usages (especially around redux type definitions)
package/legacy.js CHANGED
@@ -83,11 +83,11 @@ module.exports = {
83
83
  // Overlaps with @typescript-eslint/prefer-nullish-coalescing
84
84
  "sonarjs/prefer-nullish-coalescing": "off",
85
85
  // Overlaps with @typescript-eslint/no-unused-vars
86
- "sonarjs/sonar-no-unused-vars": "off",
86
+ "sonarjs/no-unused-vars": "off",
87
87
  // Overlaps with @typescript-eslint/prefer-optional-chain
88
- "sonarjs/sonar-prefer-optional-chain": "off",
88
+ "sonarjs/prefer-optional-chain": "off",
89
89
  // Useful for guarding against prop mutation in React, but too much of a lift as very rarely do we apply readonly/ReadonlyArray<T> to type definitions
90
- "sonarjs/sonar-prefer-read-only-props": "off",
90
+ "sonarjs/prefer-read-only-props": "off",
91
91
  // Noisy rule: if we wanted stricter linting of TODOs, we could use unicorn/expiring-todo-comments
92
92
  "sonarjs/todo-tag": "off",
93
93
  // A useful rule to consider for libraries to better document (and export) type definitions, but noisy in app usages (especially around redux type definitions)
package/package.json CHANGED
@@ -12,7 +12,7 @@
12
12
  "eslint-plugin-node": "11.1.0",
13
13
  "eslint-plugin-prettier": "5.2.1",
14
14
  "eslint-plugin-simple-import-sort": "12.1.1",
15
- "eslint-plugin-sonarjs": "2.0.4",
15
+ "eslint-plugin-sonarjs": "3.0.0",
16
16
  "eslint-plugin-sort-destructure-keys": "2.0.0",
17
17
  "eslint-plugin-typescript-sort-keys": "3.3.0",
18
18
  "eslint-plugin-unicorn": "56.0.1"
@@ -42,5 +42,5 @@
42
42
  "access": "public"
43
43
  },
44
44
  "repository": "https://github.com/open-turo/eslint-config-typescript",
45
- "version": "11.0.7"
45
+ "version": "12.0.0"
46
46
  }
@@ -952,18 +952,6 @@ exports[`validate config load config file in ESLint to validate all rules are co
952
952
  "simple-import-sort/imports": [
953
953
  "error",
954
954
  ],
955
- "sonarjs/accessor-pairs": [
956
- "off",
957
- ],
958
- "sonarjs/alt-text": [
959
- "error",
960
- ],
961
- "sonarjs/anchor-has-content": [
962
- "error",
963
- ],
964
- "sonarjs/anchor-is-valid": [
965
- "error",
966
- ],
967
955
  "sonarjs/anchor-precedence": [
968
956
  "error",
969
957
  ],
@@ -1048,10 +1036,10 @@ exports[`validate config load config file in ESLint to validate all rules are co
1048
1036
  "sonarjs/bitwise-operators": [
1049
1037
  "error",
1050
1038
  ],
1051
- "sonarjs/bool-param-default": [
1052
- "off",
1039
+ "sonarjs/block-scoped-var": [
1040
+ "error",
1053
1041
  ],
1054
- "sonarjs/brace-style": [
1042
+ "sonarjs/bool-param-default": [
1055
1043
  "off",
1056
1044
  ],
1057
1045
  "sonarjs/call-argument-line": [
@@ -1117,9 +1105,6 @@ exports[`validate config load config file in ESLint to validate all rules are co
1117
1105
  "sonarjs/declarations-in-global-scope": [
1118
1106
  "off",
1119
1107
  ],
1120
- "sonarjs/default-param-last": [
1121
- "error",
1122
- ],
1123
1108
  "sonarjs/deprecation": [
1124
1109
  "off",
1125
1110
  ],
@@ -1210,12 +1195,6 @@ exports[`validate config load config file in ESLint to validate all rules are co
1210
1195
  "sonarjs/hidden-files": [
1211
1196
  "error",
1212
1197
  ],
1213
- "sonarjs/hook-use-state": [
1214
- "error",
1215
- ],
1216
- "sonarjs/html-has-lang": [
1217
- "error",
1218
- ],
1219
1198
  "sonarjs/in-operator-type-error": [
1220
1199
  "error",
1221
1200
  ],
@@ -1234,16 +1213,7 @@ exports[`validate config load config file in ESLint to validate all rules are co
1234
1213
  "sonarjs/inverted-assertion-arguments": [
1235
1214
  "error",
1236
1215
  ],
1237
- "sonarjs/jsx-key": [
1238
- "error",
1239
- ],
1240
- "sonarjs/jsx-no-constructed-context-values": [
1241
- "error",
1242
- ],
1243
- "sonarjs/jsx-no-useless-fragment": [
1244
- "error",
1245
- ],
1246
- "sonarjs/label-has-associated-control": [
1216
+ "sonarjs/jsx-no-leaked-render": [
1247
1217
  "error",
1248
1218
  ],
1249
1219
  "sonarjs/label-position": [
@@ -1252,33 +1222,27 @@ exports[`validate config load config file in ESLint to validate all rules are co
1252
1222
  "sonarjs/link-with-target-blank": [
1253
1223
  "error",
1254
1224
  ],
1225
+ "sonarjs/max-lines": [
1226
+ "off",
1227
+ ],
1228
+ "sonarjs/max-lines-per-function": [
1229
+ "off",
1230
+ ],
1255
1231
  "sonarjs/max-switch-cases": [
1256
1232
  "error",
1257
1233
  ],
1258
1234
  "sonarjs/max-union-size": [
1259
1235
  "off",
1260
1236
  ],
1261
- "sonarjs/media-has-caption": [
1262
- "error",
1263
- ],
1264
1237
  "sonarjs/misplaced-loop-counter": [
1265
1238
  "error",
1266
1239
  ],
1267
- "sonarjs/mouse-events-a11y": [
1268
- "error",
1269
- ],
1270
1240
  "sonarjs/nested-control-flow": [
1271
1241
  "off",
1272
1242
  ],
1273
- "sonarjs/new-cap": [
1274
- "error",
1275
- ],
1276
1243
  "sonarjs/new-operator-misuse": [
1277
1244
  "error",
1278
1245
  ],
1279
- "sonarjs/no-accessor-field-mismatch": [
1280
- "error",
1281
- ],
1282
1246
  "sonarjs/no-all-duplicated-branches": [
1283
1247
  "error",
1284
1248
  ],
@@ -1291,18 +1255,12 @@ exports[`validate config load config file in ESLint to validate all rules are co
1291
1255
  "sonarjs/no-array-delete": [
1292
1256
  "error",
1293
1257
  ],
1294
- "sonarjs/no-array-index-key": [
1295
- "error",
1296
- ],
1297
1258
  "sonarjs/no-associative-arrays": [
1298
1259
  "error",
1299
1260
  ],
1300
1261
  "sonarjs/no-async-constructor": [
1301
1262
  "error",
1302
1263
  ],
1303
- "sonarjs/no-base-to-string": [
1304
- "error",
1305
- ],
1306
1264
  "sonarjs/no-built-in-override": [
1307
1265
  "off",
1308
1266
  ],
@@ -1324,13 +1282,13 @@ exports[`validate config load config file in ESLint to validate all rules are co
1324
1282
  "sonarjs/no-commented-code": [
1325
1283
  "error",
1326
1284
  ],
1327
- "sonarjs/no-dead-store": [
1285
+ "sonarjs/no-control-regex": [
1328
1286
  "error",
1329
1287
  ],
1330
- "sonarjs/no-delete-var": [
1288
+ "sonarjs/no-dead-store": [
1331
1289
  "error",
1332
1290
  ],
1333
- "sonarjs/no-deprecated-react": [
1291
+ "sonarjs/no-delete-var": [
1334
1292
  "error",
1335
1293
  ],
1336
1294
  "sonarjs/no-duplicate-in-composite": [
@@ -1351,18 +1309,15 @@ exports[`validate config load config file in ESLint to validate all rules are co
1351
1309
  "sonarjs/no-empty-alternatives": [
1352
1310
  "error",
1353
1311
  ],
1354
- "sonarjs/no-empty-collection": [
1312
+ "sonarjs/no-empty-character-class": [
1355
1313
  "error",
1356
1314
  ],
1357
- "sonarjs/no-empty-function": [
1315
+ "sonarjs/no-empty-collection": [
1358
1316
  "error",
1359
1317
  ],
1360
1318
  "sonarjs/no-empty-group": [
1361
1319
  "error",
1362
1320
  ],
1363
- "sonarjs/no-empty-interface": [
1364
- "off",
1365
- ],
1366
1321
  "sonarjs/no-empty-test-file": [
1367
1322
  "error",
1368
1323
  ],
@@ -1372,16 +1327,10 @@ exports[`validate config load config file in ESLint to validate all rules are co
1372
1327
  "sonarjs/no-exclusive-tests": [
1373
1328
  "error",
1374
1329
  ],
1375
- "sonarjs/no-extend-native": [
1376
- "error",
1377
- ],
1378
1330
  "sonarjs/no-extra-arguments": [
1379
1331
  "error",
1380
1332
  ],
1381
- "sonarjs/no-extra-semi": [
1382
- "off",
1383
- ],
1384
- "sonarjs/no-find-dom-node": [
1333
+ "sonarjs/no-fallthrough": [
1385
1334
  "error",
1386
1335
  ],
1387
1336
  "sonarjs/no-for-in-iterable": [
@@ -1399,10 +1348,13 @@ exports[`validate config load config file in ESLint to validate all rules are co
1399
1348
  "sonarjs/no-gratuitous-expressions": [
1400
1349
  "error",
1401
1350
  ],
1402
- "sonarjs/no-hardcoded-credentials": [
1351
+ "sonarjs/no-hardcoded-ip": [
1403
1352
  "error",
1404
1353
  ],
1405
- "sonarjs/no-hardcoded-ip": [
1354
+ "sonarjs/no-hardcoded-passwords": [
1355
+ "error",
1356
+ ],
1357
+ "sonarjs/no-hardcoded-secrets": [
1406
1358
  "error",
1407
1359
  ],
1408
1360
  "sonarjs/no-hook-setter-in-body": [
@@ -1441,9 +1393,6 @@ exports[`validate config load config file in ESLint to validate all rules are co
1441
1393
  "sonarjs/no-incorrect-string-concat": [
1442
1394
  "off",
1443
1395
  ],
1444
- "sonarjs/no-infinite-loop": [
1445
- "error",
1446
- ],
1447
1396
  "sonarjs/no-internal-api-use": [
1448
1397
  "error",
1449
1398
  ],
@@ -1453,6 +1402,9 @@ exports[`validate config load config file in ESLint to validate all rules are co
1453
1402
  "sonarjs/no-invalid-await": [
1454
1403
  "error",
1455
1404
  ],
1405
+ "sonarjs/no-invalid-regexp": [
1406
+ "error",
1407
+ ],
1456
1408
  "sonarjs/no-invariant-returns": [
1457
1409
  "error",
1458
1410
  ],
@@ -1468,16 +1420,13 @@ exports[`validate config load config file in ESLint to validate all rules are co
1468
1420
  "sonarjs/no-literal-call": [
1469
1421
  "error",
1470
1422
  ],
1471
- "sonarjs/no-lonely-if": [
1472
- "error",
1473
- ],
1474
1423
  "sonarjs/no-mime-sniff": [
1475
1424
  "error",
1476
1425
  ],
1477
1426
  "sonarjs/no-misleading-array-reverse": [
1478
1427
  "error",
1479
1428
  ],
1480
- "sonarjs/no-misused-promises": [
1429
+ "sonarjs/no-misleading-character-class": [
1481
1430
  "error",
1482
1431
  ],
1483
1432
  "sonarjs/no-mixed-content": [
@@ -1516,9 +1465,6 @@ exports[`validate config load config file in ESLint to validate all rules are co
1516
1465
  "sonarjs/no-primitive-wrappers": [
1517
1466
  "error",
1518
1467
  ],
1519
- "sonarjs/no-redeclare": [
1520
- "error",
1521
- ],
1522
1468
  "sonarjs/no-redundant-assignments": [
1523
1469
  "error",
1524
1470
  ],
@@ -1534,15 +1480,15 @@ exports[`validate config load config file in ESLint to validate all rules are co
1534
1480
  "sonarjs/no-redundant-parentheses": [
1535
1481
  "off",
1536
1482
  ],
1537
- "sonarjs/no-redundant-type-constituents": [
1538
- "error",
1539
- ],
1540
1483
  "sonarjs/no-reference-error": [
1541
1484
  "off",
1542
1485
  ],
1543
1486
  "sonarjs/no-referrer-policy": [
1544
1487
  "error",
1545
1488
  ],
1489
+ "sonarjs/no-regex-spaces": [
1490
+ "error",
1491
+ ],
1546
1492
  "sonarjs/no-require-or-define": [
1547
1493
  "off",
1548
1494
  ],
@@ -1558,28 +1504,19 @@ exports[`validate config load config file in ESLint to validate all rules are co
1558
1504
  "sonarjs/no-selector-parameter": [
1559
1505
  "error",
1560
1506
  ],
1561
- "sonarjs/no-self-compare": [
1562
- "error",
1563
- ],
1564
- "sonarjs/no-self-import": [
1565
- "error",
1566
- ],
1567
- "sonarjs/no-skipped-test": [
1507
+ "sonarjs/no-skipped-tests": [
1568
1508
  "error",
1569
1509
  ],
1570
1510
  "sonarjs/no-small-switch": [
1571
1511
  "off",
1572
1512
  ],
1573
- "sonarjs/no-tab": [
1513
+ "sonarjs/no-sonar-comments": [
1574
1514
  "off",
1575
1515
  ],
1576
- "sonarjs/no-table-as-layout": [
1577
- "error",
1578
- ],
1579
- "sonarjs/no-this-alias": [
1516
+ "sonarjs/no-tab": [
1580
1517
  "off",
1581
1518
  ],
1582
- "sonarjs/no-throw-literal": [
1519
+ "sonarjs/no-table-as-layout": [
1583
1520
  "error",
1584
1521
  ],
1585
1522
  "sonarjs/no-try-promise": [
@@ -1597,48 +1534,27 @@ exports[`validate config load config file in ESLint to validate all rules are co
1597
1534
  "sonarjs/no-uniq-key": [
1598
1535
  "error",
1599
1536
  ],
1600
- "sonarjs/no-unknown-property": [
1601
- "error",
1602
- ],
1603
- "sonarjs/no-unreachable": [
1604
- "error",
1605
- ],
1606
- "sonarjs/no-unsafe": [
1607
- "error",
1608
- ],
1609
1537
  "sonarjs/no-unsafe-unzip": [
1610
1538
  "error",
1611
1539
  ],
1612
- "sonarjs/no-unstable-nested-components": [
1613
- "error",
1614
- ],
1615
1540
  "sonarjs/no-unthrown-error": [
1616
1541
  "error",
1617
1542
  ],
1618
1543
  "sonarjs/no-unused-collection": [
1619
1544
  "error",
1620
1545
  ],
1621
- "sonarjs/no-unused-expressions": [
1622
- "error",
1623
- ],
1624
1546
  "sonarjs/no-unused-function-argument": [
1625
1547
  "off",
1626
1548
  ],
1627
- "sonarjs/no-unused-private-class-members": [
1628
- "error",
1549
+ "sonarjs/no-unused-vars": [
1550
+ "off",
1629
1551
  ],
1630
1552
  "sonarjs/no-use-of-empty-return-value": [
1631
1553
  "error",
1632
1554
  ],
1633
- "sonarjs/no-useless-call": [
1634
- "error",
1635
- ],
1636
1555
  "sonarjs/no-useless-catch": [
1637
1556
  "error",
1638
1557
  ],
1639
- "sonarjs/no-useless-constructor": [
1640
- "error",
1641
- ],
1642
1558
  "sonarjs/no-useless-increment": [
1643
1559
  "error",
1644
1560
  ],
@@ -1648,14 +1564,11 @@ exports[`validate config load config file in ESLint to validate all rules are co
1648
1564
  "sonarjs/no-useless-react-setstate": [
1649
1565
  "error",
1650
1566
  ],
1651
- "sonarjs/no-var": [
1652
- "error",
1653
- ],
1654
1567
  "sonarjs/no-variable-usage-before-declaration": [
1655
1568
  "off",
1656
1569
  ],
1657
1570
  "sonarjs/no-vue-bypass-sanitization": [
1658
- "error",
1571
+ "off",
1659
1572
  ],
1660
1573
  "sonarjs/no-weak-cipher": [
1661
1574
  "error",
@@ -1678,9 +1591,6 @@ exports[`validate config load config file in ESLint to validate all rules are co
1678
1591
  "sonarjs/object-alt-content": [
1679
1592
  "error",
1680
1593
  ],
1681
- "sonarjs/object-shorthand": [
1682
- "off",
1683
- ],
1684
1594
  "sonarjs/operation-returning-nan": [
1685
1595
  "off",
1686
1596
  ],
@@ -1693,45 +1603,30 @@ exports[`validate config load config file in ESLint to validate all rules are co
1693
1603
  "sonarjs/prefer-default-last": [
1694
1604
  "error",
1695
1605
  ],
1696
- "sonarjs/prefer-enum-initializers": [
1697
- "error",
1698
- ],
1699
- "sonarjs/prefer-for-of": [
1700
- "error",
1701
- ],
1702
- "sonarjs/prefer-function-type": [
1703
- "error",
1704
- ],
1705
1606
  "sonarjs/prefer-immediate-return": [
1706
1607
  "off",
1707
1608
  ],
1708
- "sonarjs/prefer-namespace-keyword": [
1709
- "error",
1710
- ],
1711
1609
  "sonarjs/prefer-nullish-coalescing": [
1712
1610
  "off",
1713
1611
  ],
1714
1612
  "sonarjs/prefer-object-literal": [
1715
1613
  "off",
1716
1614
  ],
1717
- "sonarjs/prefer-object-spread": [
1718
- "error",
1615
+ "sonarjs/prefer-optional-chain": [
1616
+ "off",
1719
1617
  ],
1720
1618
  "sonarjs/prefer-promise-shorthand": [
1721
1619
  "error",
1722
1620
  ],
1723
- "sonarjs/prefer-single-boolean-return": [
1724
- "error",
1621
+ "sonarjs/prefer-read-only-props": [
1622
+ "off",
1725
1623
  ],
1726
- "sonarjs/prefer-spread": [
1624
+ "sonarjs/prefer-regexp-exec": [
1727
1625
  "error",
1728
1626
  ],
1729
- "sonarjs/prefer-string-starts-ends-with": [
1627
+ "sonarjs/prefer-single-boolean-return": [
1730
1628
  "error",
1731
1629
  ],
1732
- "sonarjs/prefer-template": [
1733
- "off",
1734
- ],
1735
1630
  "sonarjs/prefer-type-guard": [
1736
1631
  "error",
1737
1632
  ],
@@ -1765,12 +1660,6 @@ exports[`validate config load config file in ESLint to validate all rules are co
1765
1660
  "sonarjs/regular-expr": [
1766
1661
  "off",
1767
1662
  ],
1768
- "sonarjs/rules-of-hooks": [
1769
- "error",
1770
- ],
1771
- "sonarjs/semi": [
1772
- "off",
1773
- ],
1774
1663
  "sonarjs/session-regeneration": [
1775
1664
  "error",
1776
1665
  ],
@@ -1789,60 +1678,6 @@ exports[`validate config load config file in ESLint to validate all rules are co
1789
1678
  "sonarjs/sockets": [
1790
1679
  "off",
1791
1680
  ],
1792
- "sonarjs/sonar-block-scoped-var": [
1793
- "error",
1794
- ],
1795
- "sonarjs/sonar-jsx-no-leaked-render": [
1796
- "error",
1797
- ],
1798
- "sonarjs/sonar-max-lines": [
1799
- "off",
1800
- ],
1801
- "sonarjs/sonar-max-lines-per-function": [
1802
- "off",
1803
- ],
1804
- "sonarjs/sonar-max-params": [
1805
- "error",
1806
- ],
1807
- "sonarjs/sonar-no-control-regex": [
1808
- "error",
1809
- ],
1810
- "sonarjs/sonar-no-dupe-keys": [
1811
- "error",
1812
- ],
1813
- "sonarjs/sonar-no-empty-character-class": [
1814
- "error",
1815
- ],
1816
- "sonarjs/sonar-no-fallthrough": [
1817
- "error",
1818
- ],
1819
- "sonarjs/sonar-no-invalid-regexp": [
1820
- "error",
1821
- ],
1822
- "sonarjs/sonar-no-magic-numbers": [
1823
- "off",
1824
- ],
1825
- "sonarjs/sonar-no-misleading-character-class": [
1826
- "error",
1827
- ],
1828
- "sonarjs/sonar-no-regex-spaces": [
1829
- "error",
1830
- ],
1831
- "sonarjs/sonar-no-unused-class-component-methods": [
1832
- "error",
1833
- ],
1834
- "sonarjs/sonar-no-unused-vars": [
1835
- "off",
1836
- ],
1837
- "sonarjs/sonar-prefer-optional-chain": [
1838
- "off",
1839
- ],
1840
- "sonarjs/sonar-prefer-read-only-props": [
1841
- "off",
1842
- ],
1843
- "sonarjs/sonar-prefer-regexp-exec": [
1844
- "error",
1845
- ],
1846
1681
  "sonarjs/sql-queries": [
1847
1682
  "error",
1848
1683
  ],
@@ -1864,9 +1699,6 @@ exports[`validate config load config file in ESLint to validate all rules are co
1864
1699
  "sonarjs/super-invocation": [
1865
1700
  "error",
1866
1701
  ],
1867
- "sonarjs/switch-without-default": [
1868
- "off",
1869
- ],
1870
1702
  "sonarjs/table-header": [
1871
1703
  "error",
1872
1704
  ],
@@ -1885,9 +1717,6 @@ exports[`validate config load config file in ESLint to validate all rules are co
1885
1717
  "sonarjs/unicode-aware-regex": [
1886
1718
  "off",
1887
1719
  ],
1888
- "sonarjs/unnecessary-character-escapes": [
1889
- "error",
1890
- ],
1891
1720
  "sonarjs/unused-import": [
1892
1721
  "error",
1893
1722
  ],
@@ -1906,9 +1735,6 @@ exports[`validate config load config file in ESLint to validate all rules are co
1906
1735
  "sonarjs/updated-loop-counter": [
1907
1736
  "error",
1908
1737
  ],
1909
- "sonarjs/use-isnan": [
1910
- "error",
1911
- ],
1912
1738
  "sonarjs/use-type-alias": [
1913
1739
  "off",
1914
1740
  ],