0.1.10 • Published 3 years ago

eslint-config-thealexpatin v0.1.10

Weekly downloads
10
License
MIT
Repository
github
Last release
3 years ago

eslint-config-thealexpatinnpm.io

My personal ESLint configurations eslint configurations

Requirements

  • eslint >7.X.X

Basic Usage

Install

$ npm install -D eslint-config-thealexpatin

Create .eslintrc.js

// .eslintrc.js

module.exports = {
  extends: ["thealexpatin/<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

Examples

// .eslintrc.js

module.exports = {
  extends: ["thealexpatin/typescript"],
};
// .eslintrc.js

module.exports = {
  extends: ["thealexpatin/react-with-typescript"],
};