eslint-plugin-get-couped
ESLint rules to aid and assist developers working on the Coup application codebase. Each individual rule can be found as a file within the lib/rules
directory.
Usage
Once the package has been installed, add get-couped
to the plugins section of your .eslintrc
configuration file. You can omit the eslint-plugin-
prefix:
{
"plugins": ["get-couped"]
}
You can configure the severity of each rule under the rules
section like so:
{
"rules": {
"get-couped/no-unguarded-cloud-functions": "error"
}
}