infacto

Results 58 comments of infacto

@bradzacher Interesting. Because in my project `Two` is declared after `Test` and is still reported as shadow. ![image](https://user-images.githubusercontent.com/60390085/186416470-d630db38-f90f-4a77-b6f6-ea55465732d8.png) lel maybe a VSCode thing?

@bradzacher Maybe, it comes from a recommended in `extends`. And it seems that I cannot override it with: ```json { "no-shadow": "off", "@typescript-eslint/no-shadow": "warn" } ``` It still shouts. I...

Not sure if I should create a new issue... It's about using this plugin in editor only and fail in Git hook or CI. In the editor, the developer plays...

Late but for those who are interested: Add parameter `--max-warnings=0` may do the job. So I see warnings only in editor but in CLI/git/CI I get an error on first...

Ok, then feature request for an option to disable focusable chips?

I found a solution: **my.component.html** ```html {{ name }} ``` The `div` is required to prevent autocomplete from closing. **my.component.ts** ```ts class MyComponent { selectedOptions = []; toggle(event, option) {...

The popover behaves very buggy when the viewport is resized or rotated (orientation). The position is not updating. The popover can move outside the view and overflow or change the...

@DwieDima Thanks, I forgot. Slot "end" prevents the value from being hidden. But take a look to the [demo](https://codepen.io/infacto/pen/wvPPemm). The label and end slots are both flex and share space...

I think Angular needs a full hot reload support. Currently enabling hmr has some weird side effects and just don't work well with Angular. It still hard reloads and clears...

Same here. Example: ``` pip3 install cairosvg ``` [docs](https://cairosvg.org/documentation/) ```py from cairosvg import svg2pdf svg2pdf(url='./input/test.svg', write_to='./input_tmp/test.png') ``` Python 3.11.4 - Windows 10 Any idea?