Flo Edelmann

Results 690 issues of Flo Edelmann

* Add fixture `arri/2` ### Fixture warnings / errors * arri/2 - :x: Category 'Color Changer' invalid since there are no ColorPreset and less than two ColorIntensity capabilities and no...

new-fixture
via-editor

* Add fixture `prolights/studiocob-pfc2` Thank you **Theater der Mitte**!

new-fixture
via-editor

* Add fixture `eurolite/led-ip-par-12x12w-hcl` ### Fixture warnings / errors * eurolite/led-ip-par-12x12w-hcl - ⚠️ Mode '7 Ch' should have shortName '7ch' instead of '7 Ch'. - ⚠️ Mode '7 Ch' should...

new-fixture
via-editor

## Description of Problem Currently, the visual separation of the code blocks (JS vs. HTML) doesn't match the logical separation (child component vs. parent component): ![grafik](https://github.com/user-attachments/assets/98c3f434-d28d-41a0-a5de-2ef82a6046b3) ## Proposed Solution Split...

content

`function-color-channel` (added in https://github.com/stylelint-scss/stylelint-scss/pull/1060) works great, but it doesn't recognize uses in `@return` statements: ```scss @function color-to-rgb-string($hexColor) { @return "#{color.red($hexColor)}, #{color.green($hexColor)}, #{color.blue($hexColor)}"; } ``` Probably other rules such as `function-color-relative`...

Enhancement ✨
Help wanted 🙋

*(split out of #1053)* Reports use of the [deprecated](https://sass-lang.com/documentation/modules/color/#deprecated-functions) function `adjust-hue`, and suggests using `color.adjust` / `adjust-color` instead.

Help wanted 🙋
New rule 👌

The [`function-color-relative`](https://github.com/stylelint-scss/stylelint-scss/tree/master/src/rules/function-color-relative) prevents mistakes that occur from using deprecated and misleading functions, so I'd suggest to include it in this preset config.

`app.component` only allows `string` as a first parameter: https://github.com/vuejs/core/blob/422ef34e487f801e1162bed80c0e88e868576e1d/packages/runtime-core/src/apiCreateApp.ts#L44 But `Splide.name` and `SplideSlide.name` are typed as `string | undefined`: https://github.com/vuejs/core/blob/422ef34e487f801e1162bed80c0e88e868576e1d/packages/runtime-core/src/componentOptions.ts#L131 So to pass [`strict`](https://www.typescriptlang.org/docs/handbook/2/basic-types.html#strictness) TypeScript type-checking, a [non-null assertion operator](https://www.typescriptlang.org/docs/handbook/2/everyday-types.html#non-null-assertion-operator-postfix-)...

Webpack can be configured using TypeScript configuration files: https://webpack.js.org/configuration/configuration-languages/ Using `launch-editor-middleware` in a TypeScript file however causes a "missing declaration file" error because there are no types bundled in the...

enhancement
good first issue