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: 1-js/03-code-quality/02-coding-style/article.md
+5-5
Original file line number
Diff line number
Diff line change
@@ -301,11 +301,11 @@ The great thing about them is that style-checking can also find some bugs, like
301
301
302
302
Here are some well-known linting tools:
303
303
304
-
- [JSLint](http://www.jslint.com/) -- one of the first linters.
305
-
- [JSHint](http://www.jshint.com/) -- more settings than JSLint.
306
-
- [ESLint](http://eslint.org/) -- probably the newest one.
304
+
- [JSLint](https://www.jslint.com/) -- one of the first linters.
305
+
- [JSHint](https://jshint.com/) -- more settings than JSLint.
306
+
- [ESLint](https://eslint.org/) -- probably the newest one.
307
307
308
-
All of them can do the job. The author uses [ESLint](http://eslint.org/).
308
+
All of them can do the job. The author uses [ESLint](https://eslint.org/).
309
309
310
310
Most linters are integrated with many popular editors: just enable the plugin in the editor and configure the style.
311
311
@@ -335,7 +335,7 @@ Here's an example of an `.eslintrc` file:
335
335
336
336
Here the directive `"extends"` denotes that the configuration is based on the "eslint:recommended" set of settings. After that, we specify our own.
337
337
338
-
It is also possible to download style rule sets from the web and extend them instead. See <http://eslint.org/docs/user-guide/getting-started> for more details about installation.
338
+
It is also possible to download style rule sets from the web and extend them instead. See <https://eslint.org/docs/user-guide/getting-started> for more details about installation.
339
339
340
340
Also certain IDEs have built-in linting, which is convenient but not as customizable as ESLint.
0 commit comments