1.0.2 • Published 3 years ago

@kapta/eslint-config-ts v1.0.2

Weekly downloads
-
License
ISC
Repository
-
Last release
3 years ago

@kapta/eslint-config-ts

eslint + prettier

Setup

yarn add -D @kapta/eslint-config-ts

Usage

config .eslintrc.js

module.exports = {
  "extends": "@kapta/eslint-config-ts",
  parserOptions: {
    project: './tsconfig.json',
  },
};

config .prettierrc.js

module.exports = require('@kapta/eslint-config-ts/prettier.config');

config package.json scripts:

 "scripts": {
   "lint": "eslint *.ts src test",
   "lint:fix": "eslint --fix *.ts src test xxx"
}