package lint
Ordering
- Alphabetic
Visibility
- Public
- Protected
Type Members
- sealed trait Category extends AnyRef
Used to indicate the broad category a lint Rule belongs to.
- case class Issue(details: String) extends Product with Serializable
The result of a lint rule that found an issue.
The result of a lint rule that found an issue.
- details
should ideally explain the specifics of what is wrong and what can be done to remediate the issue.
- trait Rule extends AnyRef
A single lint rule, that when run evaluates whether or not there are any issues.
- trait Rules extends AnyRef
A collection of rules.
A collection of rules.
Implementations must be thread-safe for clients to use.
Most usage will be via the implementation provided by GlobalRules.get.
- class RulesImpl extends Rules