Skip to content

Commit fdc812a

Browse files
Schweinepriesterljharb
authored andcommitted
[Docs] HTTP => HTTPS
1 parent 8aec65a commit fdc812a

File tree

4 files changed

+19
-19
lines changed

4 files changed

+19
-19
lines changed

README.md

+16-16
Original file line numberDiff line numberDiff line change
@@ -1955,7 +1955,7 @@ Other Style Guides
19551955
}
19561956
```
19571957
1958-
- For more information refer to [JavaScript Scoping & Hoisting](http://www.adequatelygood.com/2010/2/JavaScript-Scoping-and-Hoisting/) by [Ben Cherry](http://www.adequatelygood.com/).
1958+
- For more information refer to [JavaScript Scoping & Hoisting](https://www.adequatelygood.com/2010/2/JavaScript-Scoping-and-Hoisting/) by [Ben Cherry](https://www.adequatelygood.com/).
19591959
19601960
**[⬆ back to top](#table-of-contents)**
19611961
@@ -3622,7 +3622,7 @@ Other Style Guides
36223622
```
36233623

36243624
<a name="jquery--queries"></a><a name="25.3"></a>
3625-
- [26.3](#jquery--queries) For DOM queries use Cascading `$('.sidebar ul')` or parent > child `$('.sidebar > ul')`. [jsPerf](http://jsperf.com/jquery-find-vs-context-sel/16)
3625+
- [26.3](#jquery--queries) For DOM queries use Cascading `$('.sidebar ul')` or parent > child `$('.sidebar > ul')`. [jsPerf](https://jsperf.com/jquery-find-vs-context-sel/16)
36263626

36273627
<a name="jquery--find"></a><a name="25.4"></a>
36283628
- [26.4](#jquery--find) Use `find` with scoped jQuery object queries.
@@ -3762,19 +3762,19 @@ Other Style Guides
37623762
**Learning ES6+**
37633763

37643764
- [Latest ECMA spec](https://tc39.github.io/ecma262/)
3765-
- [ExploringJS](http://exploringjs.com/)
3765+
- [ExploringJS](https://exploringjs.com/)
37663766
- [ES6 Compatibility Table](https://kangax.github.io/compat-table/es6/)
37673767
- [Comprehensive Overview of ES6 Features](http://es6-features.org/)
37683768

37693769
**Read This**
37703770

3771-
- [Standard ECMA-262](http://www.ecma-international.org/ecma-262/6.0/index.html)
3771+
- [Standard ECMA-262](https://www.ecma-international.org/ecma-262/6.0/index.html)
37723772

37733773
**Tools**
37743774

37753775
- Code Style Linters
37763776
- [ESlint](https://eslint.org/) - [Airbnb Style .eslintrc](https://github.com/airbnb/javascript/blob/master/linters/.eslintrc)
3777-
- [JSHint](http://jshint.com/) - [Airbnb Style .jshintrc](https://github.com/airbnb/javascript/blob/master/linters/.jshintrc)
3777+
- [JSHint](https://jshint.com/) - [Airbnb Style .jshintrc](https://github.com/airbnb/javascript/blob/master/linters/.jshintrc)
37783778
- Neutrino Preset - [@neutrinojs/airbnb](https://neutrinojs.org/packages/airbnb/)
37793779

37803780
**Other Style Guides**
@@ -3790,13 +3790,13 @@ Other Style Guides
37903790
- [Naming this in nested functions](https://gist.github.com/cjohansen/4135065) - Christian Johansen
37913791
- [Conditional Callbacks](https://github.com/airbnb/javascript/issues/52) - Ross Allen
37923792
- [Popular JavaScript Coding Conventions on GitHub](http://sideeffect.kr/popularconvention/#javascript) - JeongHoon Byun
3793-
- [Multiple var statements in JavaScript, not superfluous](http://benalman.com/news/2012/05/multiple-var-statements-javascript/) - Ben Alman
3793+
- [Multiple var statements in JavaScript, not superfluous](https://benalman.com/news/2012/05/multiple-var-statements-javascript/) - Ben Alman
37943794

37953795
**Further Reading**
37963796

37973797
- [Understanding JavaScript Closures](https://javascriptweblog.wordpress.com/2010/10/25/understanding-javascript-closures/) - Angus Croll
3798-
- [Basic JavaScript for the impatient programmer](http://www.2ality.com/2013/06/basic-javascript.html) - Dr. Axel Rauschmayer
3799-
- [You Might Not Need jQuery](http://youmightnotneedjquery.com/) - Zack Bloom & Adam Schwartz
3798+
- [Basic JavaScript for the impatient programmer](https://www.2ality.com/2013/06/basic-javascript.html) - Dr. Axel Rauschmayer
3799+
- [You Might Not Need jQuery](https://youmightnotneedjquery.com/) - Zack Bloom & Adam Schwartz
38003800
- [ES6 Features](https://github.com/lukehoban/es6features) - Luke Hoban
38013801
- [Frontend Guidelines](https://github.com/bendc/frontend-guidelines) - Benjamin De Cock
38023802

@@ -3813,23 +3813,23 @@ Other Style Guides
38133813
- [Secrets of the JavaScript Ninja](https://www.amazon.com/Secrets-JavaScript-Ninja-John-Resig/dp/193398869X) - John Resig and Bear Bibeault
38143814
- [Human JavaScript](http://humanjavascript.com/) - Henrik Joreteg
38153815
- [Superhero.js](http://superherojs.com/) - Kim Joar Bekkelund, Mads Mobæk, & Olav Bjorkoy
3816-
- [JSBooks](http://jsbooks.revolunet.com/) - Julien Bouquillon
3816+
- [JSBooks](https://jsbooks.revolunet.com/) - Julien Bouquillon
38173817
- [Third Party JavaScript](https://www.manning.com/books/third-party-javascript) - Ben Vinegar and Anton Kovalyov
3818-
- [Effective JavaScript: 68 Specific Ways to Harness the Power of JavaScript](http://amzn.com/0321812182) - David Herman
3819-
- [Eloquent JavaScript](http://eloquentjavascript.net/) - Marijn Haverbeke
3820-
- [You Don’t Know JS: ES6 & Beyond](http://shop.oreilly.com/product/0636920033769.do) - Kyle Simpson
3818+
- [Effective JavaScript: 68 Specific Ways to Harness the Power of JavaScript](https://amzn.com/0321812182) - David Herman
3819+
- [Eloquent JavaScript](https://eloquentjavascript.net/) - Marijn Haverbeke
3820+
- [You Don’t Know JS: ES6 & Beyond](https://shop.oreilly.com/product/0636920033769.do) - Kyle Simpson
38213821

38223822
**Blogs**
38233823

3824-
- [JavaScript Weekly](http://javascriptweekly.com/)
3824+
- [JavaScript Weekly](https://javascriptweekly.com/)
38253825
- [JavaScript, JavaScript...](https://javascriptweblog.wordpress.com/)
38263826
- [Bocoup Weblog](https://bocoup.com/weblog)
3827-
- [Adequately Good](http://www.adequatelygood.com/)
3827+
- [Adequately Good](https://www.adequatelygood.com/)
38283828
- [NCZOnline](https://www.nczonline.net/)
38293829
- [Perfection Kills](http://perfectionkills.com/)
3830-
- [Ben Alman](http://benalman.com/)
3830+
- [Ben Alman](https://benalman.com/)
38313831
- [Dmitry Baranovskiy](http://dmitry.baranovskiy.com/)
3832-
- [nettuts](http://code.tutsplus.com/?s=javascript)
3832+
- [nettuts](https://code.tutsplus.com/?s=javascript)
38333833

38343834
**Podcasts**
38353835

linters/SublimeLinter/SublimeLinter.sublime-settings

+1-1
Original file line numberDiff line numberDiff line change
@@ -9,7 +9,7 @@
99
*
1010
* @version 0.3.0
1111
* @see https://github.com/SublimeLinter/SublimeLinter
12-
* @see http://www.jshint.com/docs/
12+
* @see https://www.jshint.com/docs/
1313
*/
1414
{
1515
"jshint_options":

packages/eslint-config-airbnb-base/README.md

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
# eslint-config-airbnb-base
22

3-
[![npm version](https://badge.fury.io/js/eslint-config-airbnb-base.svg)](http://badge.fury.io/js/eslint-config-airbnb-base)
3+
[![npm version](https://badge.fury.io/js/eslint-config-airbnb-base.svg)](https://badge.fury.io/js/eslint-config-airbnb-base)
44

55
This package provides Airbnb's base JS .eslintrc (without React plugins) as an extensible shared config.
66

packages/eslint-config-airbnb/README.md

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
# eslint-config-airbnb
22

3-
[![npm version](https://badge.fury.io/js/eslint-config-airbnb.svg)](http://badge.fury.io/js/eslint-config-airbnb)
3+
[![npm version](https://badge.fury.io/js/eslint-config-airbnb.svg)](https://badge.fury.io/js/eslint-config-airbnb)
44

55
This package provides Airbnb's .eslintrc as an extensible shared config.
66

0 commit comments

Comments
 (0)