@gooddata/eslint-config 11.31.0-alpha.0 → 11.31.0-alpha.2
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/PACKAGES_V9_OXLINT.md +14 -16
- package/dist/base.js +0 -35
- package/dist/base.json +0 -35
- package/dist/browser-esm.js +0 -35
- package/dist/browser-esm.json +0 -35
- package/dist/esm-playwright.js +0 -35
- package/dist/esm-playwright.json +0 -35
- package/dist/esm-react-playwright.js +0 -35
- package/dist/esm-react-playwright.json +0 -35
- package/dist/esm-react-vitest-storybook.js +0 -35
- package/dist/esm-react-vitest-storybook.json +0 -35
- package/dist/esm-react-vitest.js +0 -35
- package/dist/esm-react-vitest.json +0 -35
- package/dist/esm-react.js +0 -35
- package/dist/esm-react.json +0 -35
- package/dist/esm-vitest.js +0 -35
- package/dist/esm-vitest.json +0 -35
- package/dist/esm.js +0 -35
- package/dist/esm.json +0 -35
- package/dist/oxlint-base.js +2 -90
- package/dist/oxlint-browser-esm.js +2 -90
- package/dist/oxlint-esm-playwright.js +2 -90
- package/dist/oxlint-esm-react-playwright.js +6 -94
- package/dist/oxlint-esm-react-vitest-storybook.js +8 -96
- package/dist/oxlint-esm-react-vitest.js +6 -94
- package/dist/oxlint-esm-react.js +6 -94
- package/dist/oxlint-esm-vitest.js +2 -90
- package/dist/oxlint-esm.js +2 -90
- package/dist/oxlint-react-playwright.js +6 -94
- package/dist/oxlint-react-vitest.js +6 -94
- package/dist/oxlint-react.js +6 -94
- package/dist/react-playwright.js +0 -35
- package/dist/react-playwright.json +0 -35
- package/dist/react-vitest.js +0 -35
- package/dist/react-vitest.json +0 -35
- package/dist/react.js +0 -35
- package/dist/react.json +0 -35
- package/package.json +5 -7
|
@@ -3,10 +3,9 @@
|
|
|
3
3
|
import globals from "globals";
|
|
4
4
|
import plugin0001 from "@typescript-eslint/eslint-plugin";
|
|
5
5
|
import plugin0002 from "@typescript-eslint/parser";
|
|
6
|
-
import plugin0003 from "eslint-plugin-
|
|
7
|
-
import plugin0004 from "eslint-plugin-
|
|
8
|
-
import plugin0005 from "eslint-plugin-react";
|
|
9
|
-
import plugin0006 from "eslint-plugin-react-hooks";
|
|
6
|
+
import plugin0003 from "eslint-plugin-jsdoc";
|
|
7
|
+
import plugin0004 from "eslint-plugin-react";
|
|
8
|
+
import plugin0005 from "eslint-plugin-react-hooks";
|
|
10
9
|
|
|
11
10
|
export default [
|
|
12
11
|
{
|
|
@@ -1207,99 +1206,12 @@ export default [
|
|
|
1207
1206
|
],
|
|
1208
1207
|
},
|
|
1209
1208
|
},
|
|
1210
|
-
{
|
|
1211
|
-
plugins: {
|
|
1212
|
-
"import-x": plugin0003,
|
|
1213
|
-
},
|
|
1214
|
-
settings: {
|
|
1215
|
-
"import-x/extensions": [
|
|
1216
|
-
".js",
|
|
1217
|
-
".jsx",
|
|
1218
|
-
".mjs",
|
|
1219
|
-
".cjs",
|
|
1220
|
-
],
|
|
1221
|
-
},
|
|
1222
|
-
rules: {
|
|
1223
|
-
"import-x/order": [
|
|
1224
|
-
"error",
|
|
1225
|
-
{
|
|
1226
|
-
pathGroups: [
|
|
1227
|
-
{
|
|
1228
|
-
pattern: "react",
|
|
1229
|
-
group: "external",
|
|
1230
|
-
position: "before",
|
|
1231
|
-
},
|
|
1232
|
-
{
|
|
1233
|
-
pattern: "{@gooddata/**,gdc-*}",
|
|
1234
|
-
group: "external",
|
|
1235
|
-
position: "after",
|
|
1236
|
-
},
|
|
1237
|
-
],
|
|
1238
|
-
groups: [
|
|
1239
|
-
"builtin",
|
|
1240
|
-
"external",
|
|
1241
|
-
"internal",
|
|
1242
|
-
[
|
|
1243
|
-
"parent",
|
|
1244
|
-
"sibling",
|
|
1245
|
-
"index",
|
|
1246
|
-
],
|
|
1247
|
-
],
|
|
1248
|
-
pathGroupsExcludedImportTypes: [
|
|
1249
|
-
"react",
|
|
1250
|
-
],
|
|
1251
|
-
alphabetize: {
|
|
1252
|
-
order: "asc",
|
|
1253
|
-
caseInsensitive: true,
|
|
1254
|
-
},
|
|
1255
|
-
"newlines-between": "always",
|
|
1256
|
-
},
|
|
1257
|
-
],
|
|
1258
|
-
},
|
|
1259
|
-
},
|
|
1260
|
-
{
|
|
1261
|
-
files: [
|
|
1262
|
-
"**/*.ts",
|
|
1263
|
-
"**/*.cts",
|
|
1264
|
-
"**/*.mts",
|
|
1265
|
-
"**/*.tsx",
|
|
1266
|
-
],
|
|
1267
|
-
settings: {
|
|
1268
|
-
"import-x/extensions": [
|
|
1269
|
-
".ts",
|
|
1270
|
-
".cts",
|
|
1271
|
-
".mts",
|
|
1272
|
-
".tsx",
|
|
1273
|
-
".js",
|
|
1274
|
-
".jsx",
|
|
1275
|
-
".mjs",
|
|
1276
|
-
".cjs",
|
|
1277
|
-
],
|
|
1278
|
-
"import-x/external-module-folders": [
|
|
1279
|
-
"node_modules",
|
|
1280
|
-
"node_modules/@types",
|
|
1281
|
-
],
|
|
1282
|
-
"import-x/parsers": {
|
|
1283
|
-
"@typescript-eslint/parser": [
|
|
1284
|
-
".ts",
|
|
1285
|
-
".cts",
|
|
1286
|
-
".mts",
|
|
1287
|
-
".tsx",
|
|
1288
|
-
],
|
|
1289
|
-
},
|
|
1290
|
-
"import-x/resolver": {
|
|
1291
|
-
typescript: {
|
|
1292
|
-
alwaysTryTypes: true,
|
|
1293
|
-
},
|
|
1294
|
-
},
|
|
1295
|
-
},
|
|
1296
|
-
},
|
|
1297
1209
|
{
|
|
1298
1210
|
files: [
|
|
1299
1211
|
"**/*.{js,cjs,mjs,jsx}",
|
|
1300
1212
|
],
|
|
1301
1213
|
plugins: {
|
|
1302
|
-
jsdoc:
|
|
1214
|
+
jsdoc: plugin0003,
|
|
1303
1215
|
},
|
|
1304
1216
|
settings: {
|
|
1305
1217
|
jsdoc: {
|
|
@@ -1381,7 +1293,7 @@ export default [
|
|
|
1381
1293
|
},
|
|
1382
1294
|
{
|
|
1383
1295
|
plugins: {
|
|
1384
|
-
react:
|
|
1296
|
+
react: plugin0004,
|
|
1385
1297
|
},
|
|
1386
1298
|
settings: {
|
|
1387
1299
|
react: {
|
|
@@ -1416,7 +1328,7 @@ export default [
|
|
|
1416
1328
|
},
|
|
1417
1329
|
{
|
|
1418
1330
|
plugins: {
|
|
1419
|
-
"react-hooks":
|
|
1331
|
+
"react-hooks": plugin0005,
|
|
1420
1332
|
},
|
|
1421
1333
|
rules: {
|
|
1422
1334
|
"react-hooks/rules-of-hooks": "error",
|
|
@@ -3,10 +3,9 @@
|
|
|
3
3
|
import globals from "globals";
|
|
4
4
|
import plugin0001 from "@typescript-eslint/eslint-plugin";
|
|
5
5
|
import plugin0002 from "@typescript-eslint/parser";
|
|
6
|
-
import plugin0003 from "eslint-plugin-
|
|
7
|
-
import plugin0004 from "eslint-plugin-
|
|
8
|
-
import plugin0005 from "eslint-plugin-react";
|
|
9
|
-
import plugin0006 from "eslint-plugin-react-hooks";
|
|
6
|
+
import plugin0003 from "eslint-plugin-jsdoc";
|
|
7
|
+
import plugin0004 from "eslint-plugin-react";
|
|
8
|
+
import plugin0005 from "eslint-plugin-react-hooks";
|
|
10
9
|
|
|
11
10
|
export default [
|
|
12
11
|
{
|
|
@@ -1207,99 +1206,12 @@ export default [
|
|
|
1207
1206
|
],
|
|
1208
1207
|
},
|
|
1209
1208
|
},
|
|
1210
|
-
{
|
|
1211
|
-
plugins: {
|
|
1212
|
-
"import-x": plugin0003,
|
|
1213
|
-
},
|
|
1214
|
-
settings: {
|
|
1215
|
-
"import-x/extensions": [
|
|
1216
|
-
".js",
|
|
1217
|
-
".jsx",
|
|
1218
|
-
".mjs",
|
|
1219
|
-
".cjs",
|
|
1220
|
-
],
|
|
1221
|
-
},
|
|
1222
|
-
rules: {
|
|
1223
|
-
"import-x/order": [
|
|
1224
|
-
"error",
|
|
1225
|
-
{
|
|
1226
|
-
pathGroups: [
|
|
1227
|
-
{
|
|
1228
|
-
pattern: "react",
|
|
1229
|
-
group: "external",
|
|
1230
|
-
position: "before",
|
|
1231
|
-
},
|
|
1232
|
-
{
|
|
1233
|
-
pattern: "{@gooddata/**,gdc-*}",
|
|
1234
|
-
group: "external",
|
|
1235
|
-
position: "after",
|
|
1236
|
-
},
|
|
1237
|
-
],
|
|
1238
|
-
groups: [
|
|
1239
|
-
"builtin",
|
|
1240
|
-
"external",
|
|
1241
|
-
"internal",
|
|
1242
|
-
[
|
|
1243
|
-
"parent",
|
|
1244
|
-
"sibling",
|
|
1245
|
-
"index",
|
|
1246
|
-
],
|
|
1247
|
-
],
|
|
1248
|
-
pathGroupsExcludedImportTypes: [
|
|
1249
|
-
"react",
|
|
1250
|
-
],
|
|
1251
|
-
alphabetize: {
|
|
1252
|
-
order: "asc",
|
|
1253
|
-
caseInsensitive: true,
|
|
1254
|
-
},
|
|
1255
|
-
"newlines-between": "always",
|
|
1256
|
-
},
|
|
1257
|
-
],
|
|
1258
|
-
},
|
|
1259
|
-
},
|
|
1260
|
-
{
|
|
1261
|
-
files: [
|
|
1262
|
-
"**/*.ts",
|
|
1263
|
-
"**/*.cts",
|
|
1264
|
-
"**/*.mts",
|
|
1265
|
-
"**/*.tsx",
|
|
1266
|
-
],
|
|
1267
|
-
settings: {
|
|
1268
|
-
"import-x/extensions": [
|
|
1269
|
-
".ts",
|
|
1270
|
-
".cts",
|
|
1271
|
-
".mts",
|
|
1272
|
-
".tsx",
|
|
1273
|
-
".js",
|
|
1274
|
-
".jsx",
|
|
1275
|
-
".mjs",
|
|
1276
|
-
".cjs",
|
|
1277
|
-
],
|
|
1278
|
-
"import-x/external-module-folders": [
|
|
1279
|
-
"node_modules",
|
|
1280
|
-
"node_modules/@types",
|
|
1281
|
-
],
|
|
1282
|
-
"import-x/parsers": {
|
|
1283
|
-
"@typescript-eslint/parser": [
|
|
1284
|
-
".ts",
|
|
1285
|
-
".cts",
|
|
1286
|
-
".mts",
|
|
1287
|
-
".tsx",
|
|
1288
|
-
],
|
|
1289
|
-
},
|
|
1290
|
-
"import-x/resolver": {
|
|
1291
|
-
typescript: {
|
|
1292
|
-
alwaysTryTypes: true,
|
|
1293
|
-
},
|
|
1294
|
-
},
|
|
1295
|
-
},
|
|
1296
|
-
},
|
|
1297
1209
|
{
|
|
1298
1210
|
files: [
|
|
1299
1211
|
"**/*.{js,cjs,mjs,jsx}",
|
|
1300
1212
|
],
|
|
1301
1213
|
plugins: {
|
|
1302
|
-
jsdoc:
|
|
1214
|
+
jsdoc: plugin0003,
|
|
1303
1215
|
},
|
|
1304
1216
|
settings: {
|
|
1305
1217
|
jsdoc: {
|
|
@@ -1381,7 +1293,7 @@ export default [
|
|
|
1381
1293
|
},
|
|
1382
1294
|
{
|
|
1383
1295
|
plugins: {
|
|
1384
|
-
react:
|
|
1296
|
+
react: plugin0004,
|
|
1385
1297
|
},
|
|
1386
1298
|
settings: {
|
|
1387
1299
|
react: {
|
|
@@ -1416,7 +1328,7 @@ export default [
|
|
|
1416
1328
|
},
|
|
1417
1329
|
{
|
|
1418
1330
|
plugins: {
|
|
1419
|
-
"react-hooks":
|
|
1331
|
+
"react-hooks": plugin0005,
|
|
1420
1332
|
},
|
|
1421
1333
|
rules: {
|
|
1422
1334
|
"react-hooks/rules-of-hooks": "error",
|
package/dist/oxlint-react.js
CHANGED
|
@@ -3,10 +3,9 @@
|
|
|
3
3
|
import globals from "globals";
|
|
4
4
|
import plugin0001 from "@typescript-eslint/eslint-plugin";
|
|
5
5
|
import plugin0002 from "@typescript-eslint/parser";
|
|
6
|
-
import plugin0003 from "eslint-plugin-
|
|
7
|
-
import plugin0004 from "eslint-plugin-
|
|
8
|
-
import plugin0005 from "eslint-plugin-react";
|
|
9
|
-
import plugin0006 from "eslint-plugin-react-hooks";
|
|
6
|
+
import plugin0003 from "eslint-plugin-jsdoc";
|
|
7
|
+
import plugin0004 from "eslint-plugin-react";
|
|
8
|
+
import plugin0005 from "eslint-plugin-react-hooks";
|
|
10
9
|
|
|
11
10
|
export default [
|
|
12
11
|
{
|
|
@@ -1207,99 +1206,12 @@ export default [
|
|
|
1207
1206
|
],
|
|
1208
1207
|
},
|
|
1209
1208
|
},
|
|
1210
|
-
{
|
|
1211
|
-
plugins: {
|
|
1212
|
-
"import-x": plugin0003,
|
|
1213
|
-
},
|
|
1214
|
-
settings: {
|
|
1215
|
-
"import-x/extensions": [
|
|
1216
|
-
".js",
|
|
1217
|
-
".jsx",
|
|
1218
|
-
".mjs",
|
|
1219
|
-
".cjs",
|
|
1220
|
-
],
|
|
1221
|
-
},
|
|
1222
|
-
rules: {
|
|
1223
|
-
"import-x/order": [
|
|
1224
|
-
"error",
|
|
1225
|
-
{
|
|
1226
|
-
pathGroups: [
|
|
1227
|
-
{
|
|
1228
|
-
pattern: "react",
|
|
1229
|
-
group: "external",
|
|
1230
|
-
position: "before",
|
|
1231
|
-
},
|
|
1232
|
-
{
|
|
1233
|
-
pattern: "{@gooddata/**,gdc-*}",
|
|
1234
|
-
group: "external",
|
|
1235
|
-
position: "after",
|
|
1236
|
-
},
|
|
1237
|
-
],
|
|
1238
|
-
groups: [
|
|
1239
|
-
"builtin",
|
|
1240
|
-
"external",
|
|
1241
|
-
"internal",
|
|
1242
|
-
[
|
|
1243
|
-
"parent",
|
|
1244
|
-
"sibling",
|
|
1245
|
-
"index",
|
|
1246
|
-
],
|
|
1247
|
-
],
|
|
1248
|
-
pathGroupsExcludedImportTypes: [
|
|
1249
|
-
"react",
|
|
1250
|
-
],
|
|
1251
|
-
alphabetize: {
|
|
1252
|
-
order: "asc",
|
|
1253
|
-
caseInsensitive: true,
|
|
1254
|
-
},
|
|
1255
|
-
"newlines-between": "always",
|
|
1256
|
-
},
|
|
1257
|
-
],
|
|
1258
|
-
},
|
|
1259
|
-
},
|
|
1260
|
-
{
|
|
1261
|
-
files: [
|
|
1262
|
-
"**/*.ts",
|
|
1263
|
-
"**/*.cts",
|
|
1264
|
-
"**/*.mts",
|
|
1265
|
-
"**/*.tsx",
|
|
1266
|
-
],
|
|
1267
|
-
settings: {
|
|
1268
|
-
"import-x/extensions": [
|
|
1269
|
-
".ts",
|
|
1270
|
-
".cts",
|
|
1271
|
-
".mts",
|
|
1272
|
-
".tsx",
|
|
1273
|
-
".js",
|
|
1274
|
-
".jsx",
|
|
1275
|
-
".mjs",
|
|
1276
|
-
".cjs",
|
|
1277
|
-
],
|
|
1278
|
-
"import-x/external-module-folders": [
|
|
1279
|
-
"node_modules",
|
|
1280
|
-
"node_modules/@types",
|
|
1281
|
-
],
|
|
1282
|
-
"import-x/parsers": {
|
|
1283
|
-
"@typescript-eslint/parser": [
|
|
1284
|
-
".ts",
|
|
1285
|
-
".cts",
|
|
1286
|
-
".mts",
|
|
1287
|
-
".tsx",
|
|
1288
|
-
],
|
|
1289
|
-
},
|
|
1290
|
-
"import-x/resolver": {
|
|
1291
|
-
typescript: {
|
|
1292
|
-
alwaysTryTypes: true,
|
|
1293
|
-
},
|
|
1294
|
-
},
|
|
1295
|
-
},
|
|
1296
|
-
},
|
|
1297
1209
|
{
|
|
1298
1210
|
files: [
|
|
1299
1211
|
"**/*.{js,cjs,mjs,jsx}",
|
|
1300
1212
|
],
|
|
1301
1213
|
plugins: {
|
|
1302
|
-
jsdoc:
|
|
1214
|
+
jsdoc: plugin0003,
|
|
1303
1215
|
},
|
|
1304
1216
|
settings: {
|
|
1305
1217
|
jsdoc: {
|
|
@@ -1381,7 +1293,7 @@ export default [
|
|
|
1381
1293
|
},
|
|
1382
1294
|
{
|
|
1383
1295
|
plugins: {
|
|
1384
|
-
react:
|
|
1296
|
+
react: plugin0004,
|
|
1385
1297
|
},
|
|
1386
1298
|
settings: {
|
|
1387
1299
|
react: {
|
|
@@ -1416,7 +1328,7 @@ export default [
|
|
|
1416
1328
|
},
|
|
1417
1329
|
{
|
|
1418
1330
|
plugins: {
|
|
1419
|
-
"react-hooks":
|
|
1331
|
+
"react-hooks": plugin0005,
|
|
1420
1332
|
},
|
|
1421
1333
|
rules: {
|
|
1422
1334
|
"react-hooks/rules-of-hooks": "error",
|
package/dist/react-playwright.js
CHANGED
|
@@ -1958,41 +1958,6 @@ export default [
|
|
|
1958
1958
|
"import-x/no-named-as-default-member": "warn",
|
|
1959
1959
|
"import-x/no-duplicates": "warn",
|
|
1960
1960
|
"import-x/no-unassigned-import": "error",
|
|
1961
|
-
"import-x/order": [
|
|
1962
|
-
"error",
|
|
1963
|
-
{
|
|
1964
|
-
pathGroups: [
|
|
1965
|
-
{
|
|
1966
|
-
pattern: "react",
|
|
1967
|
-
group: "external",
|
|
1968
|
-
position: "before",
|
|
1969
|
-
},
|
|
1970
|
-
{
|
|
1971
|
-
pattern: "{@gooddata/**,gdc-*}",
|
|
1972
|
-
group: "external",
|
|
1973
|
-
position: "after",
|
|
1974
|
-
},
|
|
1975
|
-
],
|
|
1976
|
-
groups: [
|
|
1977
|
-
"builtin",
|
|
1978
|
-
"external",
|
|
1979
|
-
"internal",
|
|
1980
|
-
[
|
|
1981
|
-
"parent",
|
|
1982
|
-
"sibling",
|
|
1983
|
-
"index",
|
|
1984
|
-
],
|
|
1985
|
-
],
|
|
1986
|
-
pathGroupsExcludedImportTypes: [
|
|
1987
|
-
"react",
|
|
1988
|
-
],
|
|
1989
|
-
alphabetize: {
|
|
1990
|
-
order: "asc",
|
|
1991
|
-
caseInsensitive: true,
|
|
1992
|
-
},
|
|
1993
|
-
"newlines-between": "always",
|
|
1994
|
-
},
|
|
1995
|
-
],
|
|
1996
1961
|
},
|
|
1997
1962
|
},
|
|
1998
1963
|
{
|
|
@@ -663,41 +663,6 @@
|
|
|
663
663
|
"import-x/no-named-as-default-member": "warn",
|
|
664
664
|
"import-x/no-duplicates": "warn",
|
|
665
665
|
"import-x/no-unassigned-import": "error",
|
|
666
|
-
"import-x/order": [
|
|
667
|
-
"error",
|
|
668
|
-
{
|
|
669
|
-
"pathGroups": [
|
|
670
|
-
{
|
|
671
|
-
"pattern": "react",
|
|
672
|
-
"group": "external",
|
|
673
|
-
"position": "before"
|
|
674
|
-
},
|
|
675
|
-
{
|
|
676
|
-
"pattern": "{@gooddata/**,gdc-*}",
|
|
677
|
-
"group": "external",
|
|
678
|
-
"position": "after"
|
|
679
|
-
}
|
|
680
|
-
],
|
|
681
|
-
"groups": [
|
|
682
|
-
"builtin",
|
|
683
|
-
"external",
|
|
684
|
-
"internal",
|
|
685
|
-
[
|
|
686
|
-
"parent",
|
|
687
|
-
"sibling",
|
|
688
|
-
"index"
|
|
689
|
-
]
|
|
690
|
-
],
|
|
691
|
-
"pathGroupsExcludedImportTypes": [
|
|
692
|
-
"react"
|
|
693
|
-
],
|
|
694
|
-
"alphabetize": {
|
|
695
|
-
"order": "asc",
|
|
696
|
-
"caseInsensitive": true
|
|
697
|
-
},
|
|
698
|
-
"newlines-between": "always"
|
|
699
|
-
}
|
|
700
|
-
],
|
|
701
666
|
"sonarjs/function-name": "off",
|
|
702
667
|
"sonarjs/max-lines": "off",
|
|
703
668
|
"sonarjs/no-tab": "off",
|
package/dist/react-vitest.js
CHANGED
|
@@ -1957,41 +1957,6 @@ export default [
|
|
|
1957
1957
|
"import-x/no-named-as-default-member": "warn",
|
|
1958
1958
|
"import-x/no-duplicates": "warn",
|
|
1959
1959
|
"import-x/no-unassigned-import": "error",
|
|
1960
|
-
"import-x/order": [
|
|
1961
|
-
"error",
|
|
1962
|
-
{
|
|
1963
|
-
pathGroups: [
|
|
1964
|
-
{
|
|
1965
|
-
pattern: "react",
|
|
1966
|
-
group: "external",
|
|
1967
|
-
position: "before",
|
|
1968
|
-
},
|
|
1969
|
-
{
|
|
1970
|
-
pattern: "{@gooddata/**,gdc-*}",
|
|
1971
|
-
group: "external",
|
|
1972
|
-
position: "after",
|
|
1973
|
-
},
|
|
1974
|
-
],
|
|
1975
|
-
groups: [
|
|
1976
|
-
"builtin",
|
|
1977
|
-
"external",
|
|
1978
|
-
"internal",
|
|
1979
|
-
[
|
|
1980
|
-
"parent",
|
|
1981
|
-
"sibling",
|
|
1982
|
-
"index",
|
|
1983
|
-
],
|
|
1984
|
-
],
|
|
1985
|
-
pathGroupsExcludedImportTypes: [
|
|
1986
|
-
"react",
|
|
1987
|
-
],
|
|
1988
|
-
alphabetize: {
|
|
1989
|
-
order: "asc",
|
|
1990
|
-
caseInsensitive: true,
|
|
1991
|
-
},
|
|
1992
|
-
"newlines-between": "always",
|
|
1993
|
-
},
|
|
1994
|
-
],
|
|
1995
1960
|
},
|
|
1996
1961
|
},
|
|
1997
1962
|
{
|
package/dist/react-vitest.json
CHANGED
|
@@ -662,41 +662,6 @@
|
|
|
662
662
|
"import-x/no-named-as-default-member": "warn",
|
|
663
663
|
"import-x/no-duplicates": "warn",
|
|
664
664
|
"import-x/no-unassigned-import": "error",
|
|
665
|
-
"import-x/order": [
|
|
666
|
-
"error",
|
|
667
|
-
{
|
|
668
|
-
"pathGroups": [
|
|
669
|
-
{
|
|
670
|
-
"pattern": "react",
|
|
671
|
-
"group": "external",
|
|
672
|
-
"position": "before"
|
|
673
|
-
},
|
|
674
|
-
{
|
|
675
|
-
"pattern": "{@gooddata/**,gdc-*}",
|
|
676
|
-
"group": "external",
|
|
677
|
-
"position": "after"
|
|
678
|
-
}
|
|
679
|
-
],
|
|
680
|
-
"groups": [
|
|
681
|
-
"builtin",
|
|
682
|
-
"external",
|
|
683
|
-
"internal",
|
|
684
|
-
[
|
|
685
|
-
"parent",
|
|
686
|
-
"sibling",
|
|
687
|
-
"index"
|
|
688
|
-
]
|
|
689
|
-
],
|
|
690
|
-
"pathGroupsExcludedImportTypes": [
|
|
691
|
-
"react"
|
|
692
|
-
],
|
|
693
|
-
"alphabetize": {
|
|
694
|
-
"order": "asc",
|
|
695
|
-
"caseInsensitive": true
|
|
696
|
-
},
|
|
697
|
-
"newlines-between": "always"
|
|
698
|
-
}
|
|
699
|
-
],
|
|
700
665
|
"sonarjs/function-name": "off",
|
|
701
666
|
"sonarjs/max-lines": "off",
|
|
702
667
|
"sonarjs/no-tab": "off",
|
package/dist/react.js
CHANGED
|
@@ -1955,41 +1955,6 @@ export default [
|
|
|
1955
1955
|
"import-x/no-named-as-default-member": "warn",
|
|
1956
1956
|
"import-x/no-duplicates": "warn",
|
|
1957
1957
|
"import-x/no-unassigned-import": "error",
|
|
1958
|
-
"import-x/order": [
|
|
1959
|
-
"error",
|
|
1960
|
-
{
|
|
1961
|
-
pathGroups: [
|
|
1962
|
-
{
|
|
1963
|
-
pattern: "react",
|
|
1964
|
-
group: "external",
|
|
1965
|
-
position: "before",
|
|
1966
|
-
},
|
|
1967
|
-
{
|
|
1968
|
-
pattern: "{@gooddata/**,gdc-*}",
|
|
1969
|
-
group: "external",
|
|
1970
|
-
position: "after",
|
|
1971
|
-
},
|
|
1972
|
-
],
|
|
1973
|
-
groups: [
|
|
1974
|
-
"builtin",
|
|
1975
|
-
"external",
|
|
1976
|
-
"internal",
|
|
1977
|
-
[
|
|
1978
|
-
"parent",
|
|
1979
|
-
"sibling",
|
|
1980
|
-
"index",
|
|
1981
|
-
],
|
|
1982
|
-
],
|
|
1983
|
-
pathGroupsExcludedImportTypes: [
|
|
1984
|
-
"react",
|
|
1985
|
-
],
|
|
1986
|
-
alphabetize: {
|
|
1987
|
-
order: "asc",
|
|
1988
|
-
caseInsensitive: true,
|
|
1989
|
-
},
|
|
1990
|
-
"newlines-between": "always",
|
|
1991
|
-
},
|
|
1992
|
-
],
|
|
1993
1958
|
},
|
|
1994
1959
|
},
|
|
1995
1960
|
{
|
package/dist/react.json
CHANGED
|
@@ -660,41 +660,6 @@
|
|
|
660
660
|
"import-x/no-named-as-default-member": "warn",
|
|
661
661
|
"import-x/no-duplicates": "warn",
|
|
662
662
|
"import-x/no-unassigned-import": "error",
|
|
663
|
-
"import-x/order": [
|
|
664
|
-
"error",
|
|
665
|
-
{
|
|
666
|
-
"pathGroups": [
|
|
667
|
-
{
|
|
668
|
-
"pattern": "react",
|
|
669
|
-
"group": "external",
|
|
670
|
-
"position": "before"
|
|
671
|
-
},
|
|
672
|
-
{
|
|
673
|
-
"pattern": "{@gooddata/**,gdc-*}",
|
|
674
|
-
"group": "external",
|
|
675
|
-
"position": "after"
|
|
676
|
-
}
|
|
677
|
-
],
|
|
678
|
-
"groups": [
|
|
679
|
-
"builtin",
|
|
680
|
-
"external",
|
|
681
|
-
"internal",
|
|
682
|
-
[
|
|
683
|
-
"parent",
|
|
684
|
-
"sibling",
|
|
685
|
-
"index"
|
|
686
|
-
]
|
|
687
|
-
],
|
|
688
|
-
"pathGroupsExcludedImportTypes": [
|
|
689
|
-
"react"
|
|
690
|
-
],
|
|
691
|
-
"alphabetize": {
|
|
692
|
-
"order": "asc",
|
|
693
|
-
"caseInsensitive": true
|
|
694
|
-
},
|
|
695
|
-
"newlines-between": "always"
|
|
696
|
-
}
|
|
697
|
-
],
|
|
698
663
|
"sonarjs/function-name": "off",
|
|
699
664
|
"sonarjs/max-lines": "off",
|
|
700
665
|
"sonarjs/no-tab": "off",
|