@rotki/eslint-plugin 0.3.0 → 0.3.1
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/dist/index.cjs +30 -2
- package/dist/index.mjs +30 -2
- package/package.json +1 -1
package/dist/index.cjs
CHANGED
|
@@ -23,7 +23,7 @@ const createDebug__default = /*#__PURE__*/_interopDefaultCompat(createDebug);
|
|
|
23
23
|
const compat__namespace = /*#__PURE__*/_interopNamespaceCompat(compat);
|
|
24
24
|
|
|
25
25
|
const name = "@rotki/eslint-plugin";
|
|
26
|
-
const version = "0.3.
|
|
26
|
+
const version = "0.3.1";
|
|
27
27
|
const packageManager = "pnpm@8.15.0";
|
|
28
28
|
const type = "module";
|
|
29
29
|
const license = "AGPL-3.0";
|
|
@@ -420,9 +420,37 @@ const noDeprecatedClasses = createEslintRule({
|
|
|
420
420
|
|
|
421
421
|
const debug$1 = createDebug__default("@rotki/eslint-plugin:no-deprecated-components");
|
|
422
422
|
const RULE_NAME$2 = "no-deprecated-components";
|
|
423
|
+
const vuetify = {
|
|
424
|
+
VApp: true,
|
|
425
|
+
VAppBar: true,
|
|
426
|
+
VAppBarNavIcon: true,
|
|
427
|
+
VAutocomplete: true,
|
|
428
|
+
VAvatar: true,
|
|
429
|
+
VBottomSheet: true,
|
|
430
|
+
VColorPicker: true,
|
|
431
|
+
VCombobox: true,
|
|
432
|
+
VDataFooter: true,
|
|
433
|
+
VDataTable: true,
|
|
434
|
+
VDialog: true,
|
|
435
|
+
VDialogTransition: true,
|
|
436
|
+
VExpansionPanel: true,
|
|
437
|
+
VExpansionPanelContent: true,
|
|
438
|
+
VExpansionPanelHeader: true,
|
|
439
|
+
VExpansionPanels: true,
|
|
440
|
+
VMain: true,
|
|
441
|
+
VMenu: true,
|
|
442
|
+
VNavigationDrawer: true,
|
|
443
|
+
VPagination: true,
|
|
444
|
+
VSelect: true,
|
|
445
|
+
VSlider: true,
|
|
446
|
+
VSnackbar: true,
|
|
447
|
+
VSwitch: true,
|
|
448
|
+
VTextField: true
|
|
449
|
+
};
|
|
423
450
|
const replacements$1 = {
|
|
424
451
|
DataTable: true,
|
|
425
|
-
Fragment: false
|
|
452
|
+
Fragment: false,
|
|
453
|
+
...vuetify
|
|
426
454
|
};
|
|
427
455
|
const skipInLegacy = [
|
|
428
456
|
"Fragment"
|
package/dist/index.mjs
CHANGED
|
@@ -4,7 +4,7 @@ import * as compat from 'eslint-compat-utils';
|
|
|
4
4
|
import { pascalCase, kebabCase } from 'scule';
|
|
5
5
|
|
|
6
6
|
const name = "@rotki/eslint-plugin";
|
|
7
|
-
const version = "0.3.
|
|
7
|
+
const version = "0.3.1";
|
|
8
8
|
const packageManager = "pnpm@8.15.0";
|
|
9
9
|
const type = "module";
|
|
10
10
|
const license = "AGPL-3.0";
|
|
@@ -401,9 +401,37 @@ const noDeprecatedClasses = createEslintRule({
|
|
|
401
401
|
|
|
402
402
|
const debug$1 = createDebug("@rotki/eslint-plugin:no-deprecated-components");
|
|
403
403
|
const RULE_NAME$2 = "no-deprecated-components";
|
|
404
|
+
const vuetify = {
|
|
405
|
+
VApp: true,
|
|
406
|
+
VAppBar: true,
|
|
407
|
+
VAppBarNavIcon: true,
|
|
408
|
+
VAutocomplete: true,
|
|
409
|
+
VAvatar: true,
|
|
410
|
+
VBottomSheet: true,
|
|
411
|
+
VColorPicker: true,
|
|
412
|
+
VCombobox: true,
|
|
413
|
+
VDataFooter: true,
|
|
414
|
+
VDataTable: true,
|
|
415
|
+
VDialog: true,
|
|
416
|
+
VDialogTransition: true,
|
|
417
|
+
VExpansionPanel: true,
|
|
418
|
+
VExpansionPanelContent: true,
|
|
419
|
+
VExpansionPanelHeader: true,
|
|
420
|
+
VExpansionPanels: true,
|
|
421
|
+
VMain: true,
|
|
422
|
+
VMenu: true,
|
|
423
|
+
VNavigationDrawer: true,
|
|
424
|
+
VPagination: true,
|
|
425
|
+
VSelect: true,
|
|
426
|
+
VSlider: true,
|
|
427
|
+
VSnackbar: true,
|
|
428
|
+
VSwitch: true,
|
|
429
|
+
VTextField: true
|
|
430
|
+
};
|
|
404
431
|
const replacements$1 = {
|
|
405
432
|
DataTable: true,
|
|
406
|
-
Fragment: false
|
|
433
|
+
Fragment: false,
|
|
434
|
+
...vuetify
|
|
407
435
|
};
|
|
408
436
|
const skipInLegacy = [
|
|
409
437
|
"Fragment"
|