2.1.4 • Published 4 years ago

@warrify/eslint-config v2.1.4

Weekly downloads
1
License
MIT
Repository
gitlab
Last release
4 years ago

eslint-config-warrify

Usage

For just a basic setup including prettier, typescript and jest use:

// .eslintrc.js
module.exports = {
  extends: [
    "@warrify"
  ]
}

For node:

// .eslintrc.js
module.exports = {
  extends: [
    "@warrify/eslint-config/react"
  ]
}

If you also want react or react-native specific configurations:

// .eslintrc.js
module.exports = {
  extends: [
    "@warrify/eslint-config/react",
    "@warrify/eslint-config/react-native",
  ]
}