Skip to content

build(deps-dev): bump eslint-plugin-wc from 2.1.0 to 3.0.0 #1051

New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Merged
merged 3 commits into from
Apr 11, 2025
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
4 changes: 2 additions & 2 deletions eslint.config.mjs
Original file line number Diff line number Diff line change
@@ -2,8 +2,8 @@ import globals from 'globals';
import pluginJs from '@eslint/js';
import tseslint from 'typescript-eslint';
import localRules from 'eslint-plugin-local-rules';
import wcPlugin from 'eslint-plugin-wc';
import litPlugin from 'eslint-plugin-lit';
import * as wcPlugin from 'eslint-plugin-wc';
import * as litPlugin from 'eslint-plugin-lit';
import eslintPluginPrettierRecommended from 'eslint-plugin-prettier/recommended';

import { includeIgnoreFile } from '@eslint/compat';
247 changes: 117 additions & 130 deletions package-lock.json
18 changes: 9 additions & 9 deletions package.json
Original file line number Diff line number Diff line change
@@ -61,8 +61,8 @@
"devDependencies": {
"@babel/core": "7.25.2",
"@chromatic-com/storybook": "3.2.5",
"@eslint/compat": "^1.1.1",
"@eslint/js": "^9.7.0",
"@eslint/compat": "1.2.8",
"@eslint/js": "9.24.0",
"@lerna-lite/cli": "3.12.3",
"@lerna-lite/exec": "3.12.3",
"@lerna-lite/publish": "3.12.3",
@@ -92,18 +92,18 @@
"chromatic": "11.27.0",
"element-internals-polyfill": "1.3.10",
"esbuild": "0.25.1",
"eslint": "9.22.0",
"eslint-config-prettier": "10.1.1",
"eslint-plugin-lit": "1.14.0",
"eslint": "9.24.0",
"eslint-config-prettier": "10.1.2",
"eslint-plugin-lit": "2.0.0",
"eslint-plugin-local-rules": "3.0.2",
"eslint-plugin-prettier": "5.2.1",
"eslint-plugin-storybook": "0.11.3",
"eslint-plugin-wc": "2.1.0",
"eslint-plugin-prettier": "5.2.6",
"eslint-plugin-storybook": "0.12.0",
"eslint-plugin-wc": "3.0.0",
"github-markdown-css": "5.8.0",
"glob": "10.4.3",
"globals": "15.8.0",
"husky": "9.1.1",
"lint-staged": "15.2.7",
"lint-staged": "15.5.0",
"npm-check-updates": "16.14.20",
"plop": "3.1.2",
"postcss": "8.4.39",

Unchanged files with check annotations Beta

type Constructor<T = {}> = new (...args: any[]) => T;
export declare class SelectableMixinInterface extends LitElement {

Check warning on line 8 in packages/uui-base/lib/mixins/SelectableMixin.ts

GitHub Actions / test

Class declaration should be prefixed with "UUI"
/**
* Enable the ability to select this element.
* @attr
* @fires {UUISelectableEvent} selected - fires when the media card is selected
* @fires {UUISelectableEvent} deselected - fires when the media card is deselected
*/
class SelectableMixinClass extends superClass {

Check warning on line 42 in packages/uui-base/lib/mixins/SelectableMixin.ts

GitHub Actions / test

Class declaration should be prefixed with "UUI"
private _selectable = false;
/**
* Enable the ability to select this element.
type Constructor<T = {}> = new (...args: any[]) => T;
export declare class SelectOnlyMixinInterface extends SelectableMixinInterface {

Check warning on line 6 in packages/uui-base/lib/mixins/SelectOnlyMixin.ts

GitHub Actions / test

Class declaration should be prefixed with "UUI"
selectOnly: boolean;
}
>(
superClass: T,
) => {
class SelectOnlyMixinClass extends superClass {

Check warning on line 22 in packages/uui-base/lib/mixins/SelectOnlyMixin.ts

GitHub Actions / test

Class declaration should be prefixed with "UUI"
private _selectOnly = false;
/**
type Constructor<T = {}> = new (...args: any[]) => T;
export declare class PopoverTargetMixinInterface {

Check warning on line 7 in packages/uui-base/lib/mixins/PopoverTargetMixin.ts

GitHub Actions / test

Class declaration should be prefixed with "UUI"
/**
* Set a popovertarget.
* @type {string}
/**
* Popover target mixin class containing the popover target functionality.
*/
class PopoverTargetMixinClass extends superClass {

Check warning on line 34 in packages/uui-base/lib/mixins/PopoverTargetMixin.ts

GitHub Actions / test

Class declaration should be prefixed with "UUI"
/**
* Set a popovertarget.
* @type {string}
type Constructor<T = {}> = new (...args: any[]) => T;
export declare class LabelMixinInterface {

Check warning on line 6 in packages/uui-base/lib/mixins/LabelMixin.ts

GitHub Actions / test

Class declaration should be prefixed with "UUI"
/**
* Label to be used for aria-label and potentially as visual label for some components
* @type {string}
/**
* Label mixin class containing the label functionality.
*/
class LabelMixinClass extends superClass {

Check warning on line 31 in packages/uui-base/lib/mixins/LabelMixin.ts

GitHub Actions / test

Class declaration should be prefixed with "UUI"
/**
* Label to be used for aria-label and potentially as visual label for some components
* @type {string}
type Constructor<T = {}> = new (...args: any[]) => T;
export declare class ActiveMixinInterface {

Check warning on line 6 in packages/uui-base/lib/mixins/ActiveMixin.ts

GitHub Actions / test

Class declaration should be prefixed with "UUI"
/**
* Set this boolean to true for then the related composition is sorted.
* @type {boolean}
export const ActiveMixin = <T extends Constructor<LitElement>>(
superClass: T,
) => {
class ActiveMixinClass extends superClass {

Check warning on line 25 in packages/uui-base/lib/mixins/ActiveMixin.ts

GitHub Actions / test

Class declaration should be prefixed with "UUI"
/**
* Set this boolean to true for then the related composition is sorted.
* @type {boolean}