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
Copy file name to clipboardExpand all lines: src/content/3/en/part3d.md
+3-3Lines changed: 3 additions & 3 deletions
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -292,13 +292,13 @@ It is recommended to create a separate _npm script_ for linting:
292
292
293
293
Now the _npm run lint_ command will check every file in the project.
294
294
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:
296
296
297
297
```bash
298
-
build
298
+
dist
299
299
```
300
300
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.
0 commit comments