Skip to content

Commit e0cd81e

Browse files
chore: migrate to eslint flat config
1 parent 33af287 commit e0cd81e

File tree

67 files changed

+222
-397
lines changed

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

67 files changed

+222
-397
lines changed

.eslintignore

-1
This file was deleted.

.eslintrc.json

-127
This file was deleted.

.github/workflows/ci.yml

+2
Original file line numberDiff line numberDiff line change
@@ -38,6 +38,8 @@ jobs:
3838
run: npm run build -- --skip-nx-cache
3939
- name: test
4040
run: npm run test
41+
- name: lint
42+
run: npm run lint
4143
- name: Release
4244
if: github.repository == 'testing-library/angular-testing-library' && (github.ref == 'refs/heads/main' || github.ref == 'refs/heads/beta')
4345
run: npx semantic-release

README.md

+1-1
Original file line numberDiff line numberDiff line change
@@ -98,7 +98,7 @@ counter.component.ts
9898

9999
```ts
100100
@Component({
101-
selector: 'app-counter',
101+
selector: 'atl-counter',
102102
template: `
103103
<span>{{ hello() }}</span>
104104
<button (click)="decrement()">-</button>

apps/example-app-karma/.eslintrc.json

-44
This file was deleted.
+7
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,7 @@
1+
// @ts-check
2+
3+
// TODO - https://github.com/nrwl/nx/issues/22576
4+
5+
/** @type {import('@typescript-eslint/utils/ts-eslint').FlatConfig.ConfigPromise} */
6+
const config = (async () => (await import('./eslint.config.mjs')).default)();
7+
module.exports = config;
+8
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,8 @@
1+
// @ts-check
2+
3+
import tseslint from "typescript-eslint";
4+
import rootConfig from "../../eslint.config.mjs";
5+
6+
export default tseslint.config(
7+
...rootConfig,
8+
);
-1
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,4 @@
11
declare module '@testing-library/jasmine-dom' {
2-
// eslint-disable-next-line @typescript-eslint/naming-convention
32
const JasmineDOM: any;
43
export default JasmineDOM;
54
}

apps/example-app-karma/src/app/examples/login-form.spec.ts

+2-2
Original file line numberDiff line numberDiff line change
@@ -29,7 +29,7 @@ it('should display invalid message and submit button must be disabled', async ()
2929
});
3030

3131
@Component({
32-
selector: 'app-login',
32+
selector: 'atl-login',
3333
standalone: true,
3434
imports: [ReactiveFormsModule, NgIf],
3535
template: `
@@ -51,7 +51,7 @@ class LoginComponent {
5151
});
5252

5353
constructor(private fb: FormBuilder) {}
54-
54+
5555
get email(): FormControl {
5656
return this.form.get('email') as FormControl;
5757
}

apps/example-app-karma/src/app/issues/rerender.spec.ts

+2-2
Original file line numberDiff line numberDiff line change
@@ -7,9 +7,9 @@ it('can rerender component', async () => {
77
},
88
});
99

10-
expect(screen.getByText('Hello Sarah')).toBeTruthy();
10+
expect(screen.getByText('Hello Sarah')).toBeInTheDocument();
1111

1212
await rerender({ componentProperties: { name: 'Mark' } });
1313

14-
expect(screen.getByText('Hello Mark')).toBeTruthy();
14+
expect(screen.getByText('Hello Mark')).toBeInTheDocument();
1515
});

apps/example-app/.eslintrc.json

-47
This file was deleted.

apps/example-app/eslint.config.cjs

+7
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,7 @@
1+
// @ts-check
2+
3+
// TODO - https://github.com/nrwl/nx/issues/22576
4+
5+
/** @type {import('@typescript-eslint/utils/ts-eslint').FlatConfig.ConfigPromise} */
6+
const config = (async () => (await import('./eslint.config.mjs')).default)();
7+
module.exports = config;

apps/example-app/eslint.config.mjs

+8
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,8 @@
1+
// @ts-check
2+
3+
import tseslint from "typescript-eslint";
4+
import rootConfig from "../../eslint.config.mjs";
5+
6+
export default tseslint.config(
7+
...rootConfig,
8+
);

apps/example-app/jest.config.ts

-1
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,3 @@
1-
/* eslint-disable */
21
export default {
32
displayName: {
43
name: 'Example App',

apps/example-app/src/app/examples/00-single-component.ts

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
import { Component } from '@angular/core';
22

33
@Component({
4-
selector: 'app-fixture',
4+
selector: 'atl-fixture',
55
standalone: true,
66
template: `
77
<button (click)="value = value - 1">Decrement</button>

apps/example-app/src/app/examples/01-nested-component.ts

+6-6
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@ import { Component, Input, Output, EventEmitter } from '@angular/core';
22

33
@Component({
44
standalone: true,
5-
selector: 'app-button',
5+
selector: 'atl-button',
66
template: ' <button (click)="raise.emit()">{{ name }}</button> ',
77
})
88
export class NestedButtonComponent {
@@ -12,7 +12,7 @@ export class NestedButtonComponent {
1212

1313
@Component({
1414
standalone: true,
15-
selector: 'app-value',
15+
selector: 'atl-value',
1616
template: ' <span data-testid="value">{{ value }}</span> ',
1717
})
1818
export class NestedValueComponent {
@@ -21,11 +21,11 @@ export class NestedValueComponent {
2121

2222
@Component({
2323
standalone: true,
24-
selector: 'app-fixture',
24+
selector: 'atl-fixture',
2525
template: `
26-
<app-button (raise)="value = value - 1" name="Decrement" />
27-
<app-value [value]="value" />
28-
<app-button (raise)="value = value + 1" name="Increment" />
26+
<atl-button (raise)="value = value - 1" name="Decrement" />
27+
<atl-value [value]="value" />
28+
<atl-button (raise)="value = value + 1" name="Increment" />
2929
`,
3030
imports: [NestedButtonComponent, NestedValueComponent],
3131
})

apps/example-app/src/app/examples/02-input-output.spec.ts

+2-2
Original file line numberDiff line numberDiff line change
@@ -36,7 +36,7 @@ test.skip('is possible to set input and listen for output with the template synt
3636
const user = userEvent.setup();
3737
const sendSpy = jest.fn();
3838

39-
await render('<app-fixture [value]="47" (sendValue)="sendValue($event)" />', {
39+
await render('<atl-fixture [value]="47" (sendValue)="sendValue($event)" />', {
4040
imports: [InputOutputComponent],
4141
on: {
4242
sendValue: sendSpy,
@@ -94,7 +94,7 @@ test('is possible to set input and listen for output with the template syntax (d
9494
const user = userEvent.setup();
9595
const sendSpy = jest.fn();
9696

97-
await render('<app-fixture [value]="47" (sendValue)="sendValue($event)" />', {
97+
await render('<atl-fixture [value]="47" (sendValue)="sendValue($event)" />', {
9898
imports: [InputOutputComponent],
9999
componentProperties: {
100100
sendValue: sendSpy,

apps/example-app/src/app/examples/02-input-output.ts

+1-1
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@ import { Component, EventEmitter, Input, Output } from '@angular/core';
22

33
@Component({
44
standalone: true,
5-
selector: 'app-fixture',
5+
selector: 'atl-fixture',
66
template: `
77
<button (click)="value = value - 1">Decrement</button>
88
<span data-testid="value">{{ value }}</span>

apps/example-app/src/app/examples/03-forms.ts

+1-1
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@ import { FormBuilder, ReactiveFormsModule, Validators } from '@angular/forms';
44

55
@Component({
66
standalone: true,
7-
selector: 'app-fixture',
7+
selector: 'atl-fixture',
88
imports: [ReactiveFormsModule, NgForOf, NgIf],
99
template: `
1010
<form [formGroup]="form" name="form">

0 commit comments

Comments
 (0)