Skip to content

Commit 193319c

Browse files
authored
Merge pull request #2705 from imba-tjd/patch-1
Update urls
2 parents ab2c57c + e69a943 commit 193319c

File tree

1 file changed

+5
-5
lines changed

1 file changed

+5
-5
lines changed

1-js/03-code-quality/02-coding-style/article.md

+5-5
Original file line numberDiff line numberDiff line change
@@ -301,11 +301,11 @@ The great thing about them is that style-checking can also find some bugs, like
301301
302302
Here are some well-known linting tools:
303303
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.
307307
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/).
309309
310310
Most linters are integrated with many popular editors: just enable the plugin in the editor and configure the style.
311311
@@ -335,7 +335,7 @@ Here's an example of an `.eslintrc` file:
335335
336336
Here the directive `"extends"` denotes that the configuration is based on the "eslint:recommended" set of settings. After that, we specify our own.
337337
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.
339339
340340
Also certain IDEs have built-in linting, which is convenient but not as customizable as ESLint.
341341

0 commit comments

Comments
 (0)