Last active
November 23, 2021 20:44
-
-
Save jraska/18249b92fa4db2883ea953791a7c2e41 to your computer and use it in GitHub Desktop.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
moduleGraphAssert { | |
maxHeight = 4 | |
allowed = [':.* -> :core', ':feature.* -> :lib.*'] // regex to match module names - anyone can depend on :core, features can depend on libraries | |
restricted = [':feature-[a-z]* -X> :forbidden-to-depend-on'] // no feature can depend on :forbidden-to-depend-on | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment