Arjen
Arjen
Was just thinking. In our project at work, we are playing with how to name components and how to use/name the css classes. We were using [ITCSS](https://css-tricks.com/forums/topic/itcss-an-interesting-way-to-organize-large-scale-projects/) as a base...
The `unicorn/prefer-event-target` gives false positives on the Angular EventEmitter ```ts import { EventEmitter } from '@angular/core'; @Component({ ... }) export class MyComponent { @Output() changed = new EventEmitter(); // Results...
**I'm submitting a ...** (check one with "x") ``` [ ] bug report => search github for a similar issue or PR before submitting [x ] feature request [ ]...
After upgrading to Angular `13.2.5` the following Error occurs: (`13.2.4` works fine) ``` Uncaught Error: Type QuicklinkModule does not have 'ɵmod' property. at getNgModuleDef (core.mjs:1139:1) at recurse (core.mjs:21757:1) at recurse...
Would be nice if tslint-angular would extend from `tslint:recommended` and remove the duplicate rules. Or. - Remove the duplicate rules and add it as best practice to the readme? ```json...
Hi @apotonick, _(Sorry, for asking this, but I couldn't find (gems [GemGem, GemGem-trbrb], book, etc) or create a descent solution or I'm just combining to many different informationsources :-S. I...
Since the `queryBy` works with destructoring, nested properties aren't correctly merged. ```ts queryBy(query: Partial): void { const lastQuery = this.query.getValue() const nextQuery = {...lastQuery, ...query} this.query.next(nextQuery) } ``` For example:...
## Description With Cypress Component Testing getting more and more popular adn being used instead of a combination of `jest` with `@testing-library/angular|react|etc`, it would be great if Cypress Component test...
`prefer-spread` falsely marks `string.concat()` to be fixed for spread: ```ts let test = 'foo'; test = test.concat('bar'); // ^ Prefer the spread operator over `Array#concat(…)`.eslint[unicorn/prefer-spread] ``` results in: ```ts let...
With the new release of [MSW](https://mswjs.io/docs/migrations/1.x-to-2.x#about-the-release), it would be great if playwright-msw supports it as well. [edit] Gonne give it a go to provide a PR if I can find...