Skip to content

Commit

Permalink
Add conditional for 'Illegal dependency of Bootstrap Layer'
Browse files Browse the repository at this point in the history
  • Loading branch information
AleCossioCh committed Jun 11, 2021
1 parent 35b7793 commit 5a5e754
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/Renraku/ReSmalllintChecker.class.st
Expand Up @@ -16,7 +16,7 @@ Class {

{ #category : #adding }
ReSmalllintChecker >> addCritique: aCritique [
(((critiques collect: [ :x | x sourceAnchor sourceEntity name ]) includes: aCritique sourceAnchor sourceEntity name))
(((critiques collect: [ :x | x sourceAnchor sourceEntity name ]) includes: aCritique sourceAnchor sourceEntity name)and: rule first name = 'Illegal dependency of Bootstrap Layer')
ifFalse:[
^ critiques add: aCritique]
]
Expand Down

0 comments on commit 5a5e754

Please sign in to comment.