Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion GETTING_STARTED.md
Original file line number Diff line number Diff line change
Expand Up @@ -42,7 +42,7 @@ import tseslint from "typescript-eslint";
export default tseslint.config({
files: ["**/*.ts"],
extends: [
functional.configs.externalTypescriptRecommended,
functional.configs.externalTypeScriptRecommended,
functional.configs.recommended,
functional.configs.stylistic,
// your other plugin configs here
Expand Down
4 changes: 2 additions & 2 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -86,7 +86,7 @@ Other:
- **External Vanilla Recommended** (`configs.externalVanillaRecommended`)\
Configures recommended [vanilla ESLint](https://www.npmjs.com/package/eslint) rules.

- **External Typescript Recommended** (`configs.externalTypescriptRecommended`)\
- **External TypeScript Recommended** (`configs.externalTypeScriptRecommended`)\
Configures recommended [TypeScript ESLint](https://www.npmjs.com/package/@typescript-eslint/eslint-plugin) rules.
Enabling this ruleset will also enable the vanilla one.

Expand Down Expand Up @@ -180,7 +180,7 @@ These rules are what are included in the _external recommended_ rulesets.
- [prefer-const](https://eslint.org/docs/rules/prefer-const)\
This rule provides a helpful fixer when converting from an imperative code style to a functional one.

### Typescript Rules
### TypeScript Rules

- [@typescript-eslint/prefer-readonly](https://github.com/typescript-eslint/typescript-eslint/blob/main/packages/eslint-plugin/docs/rules/prefer-readonly.md)\
This rule is helpful when working with classes.
Expand Down
Loading