Search icon CANCEL
Arrow left icon
Explore Products
Best Sellers
New Releases
Books
Videos
Audiobooks
Learning Hub
Conferences
Free Learning
Arrow right icon
Arrow up icon
GO TO TOP
React Native Blueprints

You're reading from   React Native Blueprints Create eight exciting native cross-platform mobile applications with JavaScript

Arrow left icon
Product type Paperback
Published in Nov 2017
Publisher Packt
ISBN-13 9781787288096
Length 346 pages
Edition 1st Edition
Languages
Tools
Arrow right icon
Author (1):
Arrow left icon
Emilio Rodriguez Martinez Emilio Rodriguez Martinez
Author Profile Icon Emilio Rodriguez Martinez
Emilio Rodriguez Martinez
Arrow right icon
View More author details
Toc

Table of Contents (9) Chapters Close

Preface 1. Shopping List FREE CHAPTER 2. RSS Reader 3. Car Booking App 4. Image Sharing App 5. Guitar Tuner 6. Messaging App 7. Game 8. E-Commerce App

Linting and code formatting


Writing clean, bug-free code is challenging. There are a lot of pitfalls that we may face such as indentation, importing/exporting misses, tags not closed, and so on. Having to overcome all of them manually is a tough job which can distract us from our main purpose: writing functional code. Luckily, there are a handful of very useful tools to help us with this task.

The tools we will be using in this chapter to ensure our code is clean will be ESLint (https://eslint.org/) and Prettier (https://github.com/prettier/prettier). 

ESLint will be in charge of identifying and reporting on patterns found in the ES6/JavaScript code, with the goal of making the code more consistent and avoiding bugs. For example, ESLint will flag any use of non-declared variables, exposing the error while we are writing code instead of waiting until compilation.

On the other hand, Prettier enforces a consistent code style across your entire codebase because it disregards the original styling...

lock icon The rest of the chapter is locked
Register for a free Packt account to unlock a world of extra content!
A free Packt account unlocks extra newsletters, articles, discounted offers, and much more. Start advancing your knowledge today.
Unlock this book and the full library FREE for 7 days
Get unlimited access to 7000+ expert-authored eBooks and videos courses covering every tech area you can think of
Renews at $19.99/month. Cancel anytime