Yahoo Canada Web Search

Search results

  1. 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.

    • React

      A mostly reasonable approach to JavaScript View on GitHub...

  2. 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 · Overview: We recently rethought the architecture for the JavaScript side of our codebase at Airbnb. This post will look at (1) the product drivers that precipitated the changes, (2) the steps...

    • Adam Neary
  4. 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.

  5. Aug 11, 2016 · So let’s explore the most popular way to do this. Enter AirBnB + ESLint. The JavaScript ecosystem offers a wide variety of tools and style guides. This should surprise no one. with JavaScript...

  6. Amendments. We encourage you to fork this guide and change the rules to fit your team's style guide. Below, you may list some amendments to the style guide. This allows you to periodically update your style guide without having to deal with merge conflicts.

  7. People also ask

  8. This allows a subsequent contributor to add more data to the event payload without finding and updating every handler for the event. For example, instead of: ```js // bad $(this).trigger('listingUpdated', listing.id); ...