mirror of
https://github.com/airbnb/javascript.git
synced 2026-01-13 23:37:55 -05:00
Update redirects
This commit is contained in:
34
README.md
34
README.md
@@ -1109,7 +1109,7 @@ Other Style Guides
|
||||
}
|
||||
```
|
||||
|
||||
- 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/).
|
||||
- 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/).
|
||||
|
||||
**[⬆ back to top](#table-of-contents)**
|
||||
|
||||
@@ -1620,7 +1620,7 @@ Other Style Guides
|
||||
})();
|
||||
```
|
||||
|
||||
[Read more](http://stackoverflow.com/a/7365214/1712802).
|
||||
[Read more](http://stackoverflow.com/questions/7365172/semicolon-before-self-invoking-function/7365214%237365214).
|
||||
|
||||
**[⬆ back to top](#table-of-contents)**
|
||||
|
||||
@@ -1989,7 +1989,7 @@ Other Style Guides
|
||||
|
||||
## ECMAScript 5 Compatibility
|
||||
|
||||
- [26.1](#26.1) <a name='26.1'></a> Refer to [Kangax](https://twitter.com/kangax/)'s ES5 [compatibility table](http://kangax.github.com/es5-compat-table/).
|
||||
- [26.1](#26.1) <a name='26.1'></a> Refer to [Kangax](https://twitter.com/kangax/)'s ES5 [compatibility table](http://kangax.github.io/es5-compat-table/).
|
||||
|
||||
**[⬆ back to top](#table-of-contents)**
|
||||
|
||||
@@ -2028,7 +2028,7 @@ Other Style Guides
|
||||
|
||||
## Performance
|
||||
|
||||
- [On Layout & Web Performance](http://kellegous.com/j/2013/01/26/layout-performance/)
|
||||
- [On Layout & Web Performance](http://www.kellegous.com/j/2013/01/26/layout-performance/)
|
||||
- [String vs Array Concat](http://jsperf.com/string-vs-array-concat/2)
|
||||
- [Try/Catch Cost In a Loop](http://jsperf.com/try-catch-in-loop-cost)
|
||||
- [Bang Function](http://jsperf.com/bang-function)
|
||||
@@ -2057,18 +2057,18 @@ Other Style Guides
|
||||
|
||||
- Code Style Linters
|
||||
+ [ESlint](http://eslint.org/) - [Airbnb Style .eslintrc](https://github.com/airbnb/javascript/blob/master/linters/.eslintrc)
|
||||
+ [JSHint](http://www.jshint.com/) - [Airbnb Style .jshintrc](https://github.com/airbnb/javascript/blob/master/linters/jshintrc)
|
||||
+ [JSHint](http://jshint.com/) - [Airbnb Style .jshintrc](https://github.com/airbnb/javascript/blob/master/linters/jshintrc)
|
||||
+ [JSCS](https://github.com/jscs-dev/node-jscs) - [Airbnb Style Preset](https://github.com/jscs-dev/node-jscs/blob/master/presets/airbnb.json)
|
||||
|
||||
**Other Style Guides**
|
||||
|
||||
- [Google JavaScript Style Guide](http://google-styleguide.googlecode.com/svn/trunk/javascriptguide.xml)
|
||||
- [jQuery Core Style Guidelines](http://docs.jquery.com/JQuery_Core_Style_Guidelines)
|
||||
- [Principles of Writing Consistent, Idiomatic JavaScript](https://github.com/rwldrn/idiomatic.js/)
|
||||
- [jQuery Core Style Guidelines](http://contribute.jquery.org/style-guide/js/)
|
||||
- [Principles of Writing Consistent, Idiomatic JavaScript](https://github.com/rwaldron/idiomatic.js)
|
||||
|
||||
**Other Styles**
|
||||
|
||||
- [Naming this in nested functions](https://gist.github.com/4135065) - Christian Johansen
|
||||
- [Naming this in nested functions](https://gist.github.com/cjohansen/4135065) - Christian Johansen
|
||||
- [Conditional Callbacks](https://github.com/airbnb/javascript/issues/52) - Ross Allen
|
||||
- [Popular JavaScript Coding Conventions on Github](http://sideeffect.kr/popularconvention/#javascript) - JeongHoon Byun
|
||||
- [Multiple var statements in JavaScript, not superfluous](http://benalman.com/news/2012/05/multiple-var-statements-javascript/) - Ben Alman
|
||||
@@ -2095,7 +2095,7 @@ Other Style Guides
|
||||
- [Human JavaScript](http://humanjavascript.com/) - Henrik Joreteg
|
||||
- [Superhero.js](http://superherojs.com/) - Kim Joar Bekkelund, Mads Mobæk, & Olav Bjorkoy
|
||||
- [JSBooks](http://jsbooks.revolunet.com/) - Julien Bouquillon
|
||||
- [Third Party JavaScript](http://manning.com/vinegar/) - Ben Vinegar and Anton Kovalyov
|
||||
- [Third Party JavaScript](https://www.manning.com/books/third-party-javascript) - Ben Vinegar and Anton Kovalyov
|
||||
- [Effective JavaScript: 68 Specific Ways to Harness the Power of JavaScript](http://amzn.com/0321812182) - David Herman
|
||||
- [Eloquent JavaScript](http://eloquentjavascript.net/) - Marijn Haverbeke
|
||||
- [You Don't Know JS: ES6 & Beyond](http://shop.oreilly.com/product/0636920033769.do) - Kyle Simpson
|
||||
@@ -2105,18 +2105,18 @@ Other Style Guides
|
||||
- [DailyJS](http://dailyjs.com/)
|
||||
- [JavaScript Weekly](http://javascriptweekly.com/)
|
||||
- [JavaScript, JavaScript...](http://javascriptweblog.wordpress.com/)
|
||||
- [Bocoup Weblog](http://weblog.bocoup.com/)
|
||||
- [Bocoup Weblog](https://bocoup.com/weblog)
|
||||
- [Adequately Good](http://www.adequatelygood.com/)
|
||||
- [NCZOnline](http://www.nczonline.net/)
|
||||
- [NCZOnline](https://www.nczonline.net/)
|
||||
- [Perfection Kills](http://perfectionkills.com/)
|
||||
- [Ben Alman](http://benalman.com/)
|
||||
- [Dmitry Baranovskiy](http://dmitry.baranovskiy.com/)
|
||||
- [Dustin Diaz](http://dustindiaz.com/)
|
||||
- [nettuts](http://net.tutsplus.com/?s=javascript)
|
||||
- [nettuts](http://code.tutsplus.com/?s=javascript)
|
||||
|
||||
**Podcasts**
|
||||
|
||||
- [JavaScript Jabber](http://devchat.tv/js-jabber/)
|
||||
- [JavaScript Jabber](https://devchat.tv/js-jabber/)
|
||||
|
||||
|
||||
**[⬆ back to top](#table-of-contents)**
|
||||
@@ -2132,7 +2132,7 @@ Other Style Guides
|
||||
- **Avalara**: [avalara/javascript](https://github.com/avalara/javascript)
|
||||
- **Billabong**: [billabong/javascript](https://github.com/billabong/javascript)
|
||||
- **Blendle**: [blendle/javascript](https://github.com/blendle/javascript)
|
||||
- **ComparaOnline**: [comparaonline/javascript](https://github.com/comparaonline/javascript)
|
||||
- **ComparaOnline**: [comparaonline/javascript](https://github.com/comparaonline/javascript-style-guide)
|
||||
- **Compass Learning**: [compasslearning/javascript-style-guide](https://github.com/compasslearning/javascript-style-guide)
|
||||
- **DailyMotion**: [dailymotion/javascript](https://github.com/dailymotion/javascript)
|
||||
- **Digitpaint** [digitpaint/javascript](https://github.com/digitpaint/javascript)
|
||||
@@ -2145,7 +2145,7 @@ Other Style Guides
|
||||
- **General Electric**: [GeneralElectric/javascript](https://github.com/GeneralElectric/javascript)
|
||||
- **GoodData**: [gooddata/gdc-js-style](https://github.com/gooddata/gdc-js-style)
|
||||
- **Grooveshark**: [grooveshark/javascript](https://github.com/grooveshark/javascript)
|
||||
- **How About We**: [howaboutwe/javascript](https://github.com/howaboutwe/javascript)
|
||||
- **How About We**: [howaboutwe/javascript](https://github.com/howaboutwe/javascript-style-guide)
|
||||
- **Huballin**: [huballin/javascript](https://github.com/huballin/javascript)
|
||||
- **HubSpot**: [HubSpot/javascript](https://github.com/HubSpot/javascript)
|
||||
- **Hyper**: [hyperoslo/javascript-playbook](https://github.com/hyperoslo/javascript-playbook/blob/master/style.md)
|
||||
@@ -2153,7 +2153,7 @@ Other Style Guides
|
||||
- **Intent Media**: [intentmedia/javascript](https://github.com/intentmedia/javascript)
|
||||
- **Jam3**: [Jam3/Javascript-Code-Conventions](https://github.com/Jam3/Javascript-Code-Conventions)
|
||||
- **JSSolutions**: [JSSolutions/javascript](https://github.com/JSSolutions/javascript)
|
||||
- **Kinetica Solutions**: [kinetica/javascript](https://github.com/kinetica/javascript)
|
||||
- **Kinetica Solutions**: [kinetica/javascript](https://github.com/kinetica/Javascript-style-guide)
|
||||
- **Mighty Spring**: [mightyspring/javascript](https://github.com/mightyspring/javascript)
|
||||
- **MinnPost**: [MinnPost/javascript](https://github.com/MinnPost/javascript)
|
||||
- **MitocGroup**: [MitocGroup/javascript](https://github.com/MitocGroup/javascript)
|
||||
@@ -2172,7 +2172,7 @@ Other Style Guides
|
||||
- **SeekingAlpha**: [seekingalpha/javascript-style-guide](https://github.com/seekingalpha/javascript-style-guide)
|
||||
- **Shutterfly**: [shutterfly/javascript](https://github.com/shutterfly/javascript)
|
||||
- **Springload**: [springload/javascript](https://github.com/springload/javascript)
|
||||
- **StudentSphere**: [studentsphere/javascript](https://github.com/studentsphere/javascript)
|
||||
- **StudentSphere**: [studentsphere/javascript](https://github.com/studentsphere/guide-javascript)
|
||||
- **Target**: [target/javascript](https://github.com/target/javascript)
|
||||
- **TheLadders**: [TheLadders/javascript](https://github.com/TheLadders/javascript)
|
||||
- **T4R Technology**: [T4R-Technology/javascript](https://github.com/T4R-Technology/javascript)
|
||||
|
||||
Reference in New Issue
Block a user