Skip to content

Commit 5a42012

Browse files
authored
Merge pull request #3184 from myverdict/patch-8
Update part3d.md
2 parents ffce937 + e567aca commit 5a42012

File tree

1 file changed

+3
-3
lines changed

1 file changed

+3
-3
lines changed

src/content/3/en/part3d.md

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -292,13 +292,13 @@ It is recommended to create a separate _npm script_ for linting:
292292

293293
Now the _npm run lint_ command will check every file in the project.
294294

295-
Also the files in the <em>build</em> directory get checked when the command is run. We do not want this to happen, and we can accomplish this by creating an [.eslintignore](https://eslint.org/docs/user-guide/configuring#ignoring-files-and-directories) file in the project's root with the following contents:
295+
Also the files in the <em>dist</em> directory get checked when the command is run. We do not want this to happen, and we can accomplish this by creating an [.eslintignore](https://eslint.org/docs/user-guide/configuring#ignoring-files-and-directories) file in the project's root with the following contents:
296296

297297
```bash
298-
build
298+
dist
299299
```
300300

301-
This causes the entire <em>build</em> directory to not be checked by ESlint.
301+
This causes the entire <em>dist</em> directory to not be checked by ESlint.
302302

303303
Lint has quite a lot to say about our code:
304304

0 commit comments

Comments
 (0)