Daniel Kimmich
Daniel Kimmich
The M3 theme has quite some differences with the M2 theme. There is no `accent` color anymore, and the `warn` color is now called `error`. Also there is a `secondary`...
This looks like a duplicate of #1776. The dependency to `ejs` comes from `@nx/devkit` and not from Angular ESLint directly. Also because the dependency range is defined as `^3.1.7`, and...
This should have failed the unit tests of that rule. Are you sure you have configured everything correctly? Have you added `"@angular-eslint"` to your `plugins` array? With the given setup...
[email protected] is not vulnerable, [email protected] is. `@angular-eslint/builder` v17.3.0 doesn't have a direct dependency to ejs, `@nx/devkit` has. However there the version range is defined as `^3.1.7`, so `npm update` or...
I don't really understand what you are asking for. Do you want a new rule, and if yes, what problem should it solve? Or do you want the existing `@angular-eslint/template/i18n`...
For better accessibility, Material Design recommends touch targets of 48px regardless of how big the element is. It may also extend the bounds of the element. See the [related documentation](https://m3.material.io/foundations/designing/structure#b421e522-35a6-47cd-bfc6-bf94cbacf7bb).
Actually it's very easy to fix. Add this to your global styles: ```scss .mat-step-icon { --mat-stepper-header-icon-foreground-color: #fff; // or #000 for dark theme } ``` The `--mat-stepper-header-icon-foreground-color` variable just contains...
Angular projects don't have `"type": "module"` in their `package.json`. For this reason, you need to use CommonJS syntax in your `eslint.config.js`. However you can rename the file to `eslint.config.mjs`, which...
Fixed by #1399. This issue can be closed.
I'm a bit surprised that this it's legal syntax to nest `` elements. The `prefer-self-closing-tags` does not expect such syntax, as you can see. Can you add a bit more...