You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
|[`eslint-plugin-example-typed-linting`](./examples/eslint-plugin-example-typed-linting)| ESLint plugin showing typed linting with `@typescript-eslint/utils`. |
8
+
|[`flat-config-disable-type-checked`](./examples/flat-config-disable-type-checked)| Linting TypeScript code with type information, disabling typed rules on `*.js` files. |
9
+
|[`flat-config-typed`](./examples/flat-config-typed)| Linting TypeScript code with type information using Project Service. |
10
+
|[`flat-config-typed-tsconfig`](./examples/flat-config-typed-tsconfig)| Linting TypeScript code with type information and a `tsconfig.eslint.json`. |
11
+
|[`flat-config-untyped`](./examples/flat-config-untyped)| Linting TypeScript code without type information. |
12
+
|[`node-test-floating-promises`](./examples/node-test-floating-promises)| Using `node:test` along the `@typescript-eslint/no-floating-promises``allowForKnownSafeCalls` option. |
13
+
|[`typed-rule-via-linter`](./examples/typed-rule-via-linter)| Running a single typed rule via ESLint's `Linter` class. |
14
+
|[`typescript-estree-standalone`](./examples/typescript-estree-standalone)| Using the `@typescript-eslint/estree` package to generate an AST standalone (without ESLint). |
Copy file name to clipboardExpand all lines: packages/flat-config-disable-type-checked/README.md
+1-1Lines changed: 1 addition & 1 deletion
Original file line number
Diff line number
Diff line change
@@ -1,6 +1,6 @@
1
1
# Example: Flat Config and disable-type-checked
2
2
3
-
An example of using the [`typescript-eslint`](https://typescript-eslint.io/packages/typescript-eslint) package to lint TypeScript code with type information.
3
+
An example of using the [`typescript-eslint`](https://typescript-eslint.io/packages/typescript-eslint) package to lint TypeScript code with type information, disabling type checked rules on `*.js` files.
Copy file name to clipboardExpand all lines: packages/flat-config-typed/README.md
+1-1Lines changed: 1 addition & 1 deletion
Original file line number
Diff line number
Diff line change
@@ -1,6 +1,6 @@
1
1
# Example: Flat Config (Typed)
2
2
3
-
An example of using the [`typescript-eslint`](https://typescript-eslint.io/packages/typescript-eslint) package to lint TypeScript code with type information.
3
+
An example of using the [`typescript-eslint`](https://typescript-eslint.io/packages/typescript-eslint) package to lint TypeScript code with type information using Project Service.
0 commit comments