Skip to content

Commit f19cc1c

Browse files
committed
docs(linter): improve wording
1 parent 36232cd commit f19cc1c

File tree

3 files changed

+5
-5
lines changed

3 files changed

+5
-5
lines changed

src/docs/guide/usage/linter/config.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -252,4 +252,4 @@ You can ignore certain patterns of files by configuring the `ignorePatterns` pro
252252

253253
### .eslintignore
254254

255-
Oxlint works with our previous [.eslintignore](https://eslint.org/docs/latest/use/configure/ignore#the-eslintignore-file) file.
255+
Oxlint works with existing [.eslintignore](https://eslint.org/docs/latest/use/configure/ignore#the-eslintignore-file) files.

src/docs/guide/usage/linter/nested-config.md

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -3,9 +3,9 @@ outline: [2, 3]
33
editLink: false
44
---
55

6-
# Nesting configuration files
6+
# Nested configuration files
77

8-
It is possible to have multiple configuration files within the same project, and Oxlint will automatically detect the presence of these files and use them in addition to the top-level configuration file. The files must be named `.oxlintrc.json` for this to work.
8+
It is possible to have multiple configuration files within the same project. Oxlint will automatically detect the presence of these files and use them in addition to the top-level configuration file. Config files must be named `.oxlintrc.json` for nested configuration to work.
99

1010
For example, consider the following project structure:
1111

@@ -22,7 +22,7 @@ my-project/
2222
└── index.js
2323
```
2424

25-
Oxlint will always use the nearest configuration file to the file currently being processed and use that for linting. In the example hierarchy above, that means:
25+
Oxlint will always use the nearest configuration file to the file currently being processed and use that for linting. In the example above, that means:
2626

2727
- `src/index.js` will be linted using `my-project/.oxlintrc.json`
2828
- `package1/index.js` will be linted using `my-project/package1/.oxlintrc.json`

src/docs/guide/usage/linter/type-aware.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
# Type-Aware Linting
22

3-
Read our [technical preview announcement](/blog/2025-08-17-oxlint-type-aware) for technical decision and background details.
3+
Read our [technical preview announcement](/blog/2025-08-17-oxlint-type-aware) for background details, and the rationale for the architecture we have chosen for type-aware linting.
44

55
## Installation
66

0 commit comments

Comments
 (0)