mirror of https://github.com/sbt/sbt.git
Merge pull request #3347 from dwijnand/sbtUnchecked
Add `@sbtUnchecked` to sbt 0.13.16
This commit is contained in:
commit
d0db2e2dd3
|
|
@ -0,0 +1,13 @@
|
||||||
|
package sbt
|
||||||
|
|
||||||
|
import scala.annotation.Annotation
|
||||||
|
|
||||||
|
/** An annotation to designate that the annotated entity
|
||||||
|
* should not be considered for additional sbt compiler checks.
|
||||||
|
* These checks ensure that the DSL is predictable and prevents
|
||||||
|
* users from doing dangerous things at the cost of a stricter
|
||||||
|
* code structure.
|
||||||
|
*
|
||||||
|
* @since 0.13.16
|
||||||
|
*/
|
||||||
|
class sbtUnchecked extends Annotation
|
||||||
Loading…
Reference in New Issue