@kargotech/eslint-plugin-internal
v0.4.1
Published
Eslint plugin with custom rules for internal use
Readme
Eslint plugin to register additional custom rule for Kargo internal use.
Usage
Installing requirements
Make sure these package(s) are imported in your project:
- eslint: ^5.16.0 || ^6.8.0 || ^7.2.0
# Alternatively using npx
npx install-peerdeps --dev @kargotech/eslint-plugin-internalInstalling plugin
If you are using npm:
npm i -D @kargotech/eslint-plugin-internalIf you are using yarn:
yarn add @kargotech/eslint-plugin-internal -DAdd this plugin to your eslint config:
{
"plugins": ["@kargotech/internal"],
"rules": {
"@kargotech/internal/no-useless-boolean": "error",
}
}