Yahoo Canada Web Search

Search results

  1. A mostly reasonable approach to JavaScript. Note: this guide assumes you are using Babel, and requires that you use babel-preset-airbnb or the equivalent. It also assumes you are installing shims/polyfills in your app, with airbnb-browser-shims or the equivalent. This guide is available in other languages too.

    • Issues 92

      Issues 92 - airbnb/javascript: JavaScript Style Guide -...

    • Pull requests 68

      Pull requests 68 - airbnb/javascript: JavaScript Style Guide...

    • Actions

      JavaScript Style Guide. Contribute to airbnb/javascript...

    • Wiki

      Wiki - airbnb/javascript: JavaScript Style Guide - GitHub

    • Security

      Plan and track work Discussions. Collaborate outside of code...

    • Insights

      Insights - airbnb/javascript: JavaScript Style Guide -...

    • 136K Stars

      136K Stars - airbnb/javascript: JavaScript Style Guide -...

    • 26K Forks

      26K Forks - airbnb/javascript: JavaScript Style Guide -...

  2. Airbnb JavaScript Style Guide () { A mostly reasonable approach to JavaScript. Note: this guide assumes you are using Babel, and requires that you use babel-preset-airbnb or the equivalent. It also assumes you are installing shims/polyfills in your app, with airbnb-browser-shims or the equivalent. This guide is available in other languages too.

  3. May 15, 2017 · It’s not flashy work, but finally ripping out jQuery, Alt, Bootstrap, Underscore, and all external CSS requests (they block rendering, and 97% of the rules are unused!) will streamline not only...

    • Adam Neary
  4. Aug 11, 2016 · Breathing air into AirBnBs JavaScript Style Guide. No one sets out to write ugly, inconsistently-styled code. It just sort of happens. Even as the only developer on a project, the more time...

  5. Aug 11, 2016 · You’re of course welcome to spend a few days exploring the JavaScript ecosystem and comparing different tools, but I’ll try and save you some time: ESLint is the most popular JavaScript linting tool, and AirBnB’s style guide is the most widely-used style guide.

  6. Nov 5, 2012 · 1. By Harrison Shoff. Check it out on Github: https://github.com/airbnb/javascript. Everyone writes JavaScript a little differently. We finally decided it was time that we got together...

  7. People also ask

  8. Prefer JavaScript's higher-order functions like map() and reduce() instead of loops like for-of. Why? This enforces our immutable rule. Dealing with pure functions that return values is easier to reason about than side-effects. eslint rules: no-iterator.