Skip to content

taskade/eslint

Repository files navigation

@taskade/eslint

Getting Started

npm install --save-dev @taskade/eslint-plugin

To Develop

npm run build:watch

Go to packages/example and test out the ESLint rules

Additional Configurations Recommended

NOTE: (stan@taskade.com) This rule might also cause performance issue in large project.

Not on by default due to additional configuration (parserOptions.project) needed.

{
  "rules": {
    "@typescript-eslint/strict-boolean-expressions": "error"
  },
  "parserOptions": {
    "project": "tsconfig.json"
  }
}