diff --git a/README.md b/README.md index 4bc5457..f0ec2dd 100644 --- a/README.md +++ b/README.md @@ -2,13 +2,14 @@ Various examples of working with typescript-eslint. 📝 -| Example | Use Case | -| --------------------------------------------------------------------------------------- | ------------------------------------------------------------------------------------------------------ | -| [`eslint-plugin-example-typed-linting`](./examples/eslint-plugin-example-typed-linting) | ESLint plugin showing typed linting with `@typescript-eslint/utils`. | -| [`flat-config-disable-type-checked`](./examples/flat-config-disable-type-checked) | Linting TypeScript code with type information, disabling typed rules on `*.js` files. | -| [`flat-config-typed`](./examples/flat-config-typed) | Linting TypeScript code with type information using Project Service. | -| [`flat-config-typed-tsconfig`](./examples/flat-config-typed-tsconfig) | Linting TypeScript code with type information and a `tsconfig.eslint.json`. | -| [`flat-config-untyped`](./examples/flat-config-untyped) | Linting TypeScript code without type information. | -| [`node-test-floating-promises`](./examples/node-test-floating-promises) | Using `node:test` along the `@typescript-eslint/no-floating-promises` `allowForKnownSafeCalls` option. | -| [`typed-rule-via-linter`](./examples/typed-rule-via-linter) | Running a single typed rule via ESLint's `Linter` class. | -| [`typescript-estree-standalone`](./examples/typescript-estree-standalone) | Using the `@typescript-eslint/estree` package to generate an AST standalone (without ESLint). | +| Example | Use Case | +| --------------------------------------------------------------------------------------- | ----------------------------------------------------------------------------------------------------------- | +| [`eslint-plugin-example-typed-linting`](./examples/eslint-plugin-example-typed-linting) | ESLint plugin showing typed linting with `@typescript-eslint/utils`. | +| [`fastify-floating-promises`](./examples/fastify-floating-promises) | Using Fastify along with the `@typescript-eslint/no-floating-promises` `allowForKnownSafePromises` option. | +| [`flat-config-disable-type-checked`](./examples/flat-config-disable-type-checked) | Linting TypeScript code with type information, disabling typed rules on `*.js` files. | +| [`flat-config-typed`](./examples/flat-config-typed) | Linting TypeScript code with type information using Project Service. | +| [`flat-config-typed-tsconfig`](./examples/flat-config-typed-tsconfig) | Linting TypeScript code with type information and a `tsconfig.eslint.json`. | +| [`flat-config-untyped`](./examples/flat-config-untyped) | Linting TypeScript code without type information. | +| [`node-test-floating-promises`](./examples/node-test-floating-promises) | Using `node:test` along with the `@typescript-eslint/no-floating-promises` `allowForKnownSafeCalls` option. | +| [`typed-rule-via-linter`](./examples/typed-rule-via-linter) | Running a single typed rule via ESLint's `Linter` class. | +| [`typescript-estree-standalone`](./examples/typescript-estree-standalone) | Using the `@typescript-eslint/estree` package to generate an AST standalone (without ESLint). |