0.6.0 • Published 4 years ago

@underscope/eslint-config v0.6.0

Weekly downloads
88
License
MIT
Repository
github
Last release
4 years ago

eslint-config-underscope

Underscope ESLint config using Prettier, React and React Native.

How to use

$ yarn add @underscope/eslint-config

.eslintrc:

{
    "extends" "@underscope/eslint-config",
    "rules" {
        ...
    }
}

Integrating with VSCode

Open the command pallete by pressing CMD + SHIFT + P and type "Open Settings (JSON)", then make sure you have the following config:

{
  "[javascript]": {
    "editor.formatOnSave": false
  },
  "editor.formatOnSave": true,
  "prettier.disableLanguages": ["js"],
  "eslint.autoFixOnSave": true,
  "eslint.alwaysShowStatus": true
}