Skip to content

Latest commit

 

History

History
56 lines (40 loc) · 1.17 KB

Readme.md

File metadata and controls

56 lines (40 loc) · 1.17 KB

Eslint Config Calvium

Current React Native tested versions from RN 0.39.0 to RN 0.43.0 but it may work in earliers too.

eslint

Install

This module can be use in any project as a dev dependency, but it focus in RN projects.

npm install eslint-config-calvium --save-dev
#or
yarn add eslint-config-calvium --dev

after that you just need a .eslintrc in the same folder than the package.json file with this content

// Calvium React Native Project Default ESLint Settings.
{
  "extends": "calvium"
}

##NOTES

You must install the appropiate version of eslint for your project. A version bigger than 3.11.1 and below 4.x.x is recommended.

npm i eslint@3 --save-dev
#or
yarn add eslint@3 --dev

To check the package is working in your installation run:

cd path/to/package.json
./node_modules/.bin/eslint ./path/**

with path being the place where your js code is.

To have this in your IDE in-line:

  • WebStorm/PhpStorm go to:
  - Settings ->
    - Languages & Frameworks ->
      - JavaScript -> 
        - Code Quality Tools ->
          - ESLint -> enable