@recore/config

ESLint/TSconfig for @recore projects

Usage no npm install needed!

<script type="module">
  import recoreConfig from 'https://cdn.skypack.dev/@recore/config';
</script>

README

recore-config

ESLint and TSConfig for @recore projects

npm i -D eslint prettier @recore/config

提交之前检查规范

npm i -D husky lint-staged

package.json

{
  "scripts": {
    "lint": "eslint src --fix --ext .ts --ext .tsx"
  },
  "husky": {
    "hooks": {
      "pre-commit": "lint-staged"
    }
  },
  "lint-staged": {
    "src/**/*.{ts,tsx}": [
      "npm run lint"
    ]
  }
}