0.0.1 • Published 2 years ago

eslint-config-bkpk v0.0.1

Weekly downloads
-
License
UNLICENSED
Repository
github
Last release
2 years ago

eslint-config-bkpk

Standard Bkpk eslint configurations

Requirements

  • eslint >7.X.X

Basic Usage

Install

$ npm install -D eslint-config-bkpk

Create .eslintrc.js

// .eslintrc.js

module.exports = {
  extends: ['bkpk/<extension name>'],
}

Available Extensions

  • es6
  • typescript
  • react (for ES6)
  • react-with-typescript
  • react-native (for ES6)
  • react-native-with-typescript
  • vue (for ES6)
  • vue-with-typescript
  • next

Examples

// .eslintrc.js

module.exports = {
  extends: ['bkpk/typescript'],
}
// .eslintrc.js

module.exports = {
  extends: ['bkpk/react-with-typescript'],
}