Skip to content
This repository has been archived by the owner on Jan 27, 2025. It is now read-only.

Commit

Permalink
Exclude .project and metafix.err files in editorconfigChecker
Browse files Browse the repository at this point in the history
  • Loading branch information
fsteeg committed Mar 4, 2022
1 parent bc59bf4 commit 5ec283d
Showing 1 changed file with 3 additions and 2 deletions.
5 changes: 3 additions & 2 deletions build.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -15,13 +15,14 @@ editorconfig {
'**/out',
'**/output-*',
'**/xtext-gen',
'gradlew*'
'gradlew*',
'**/metafix.err'
]
}

task editorconfigChecker(type: Exec, group: 'Verification') {
executable 'misc/bin/editorconfig-checker'
args('-exclude', '/bin/|/\\.|^gradlew.*|^LICENSE$')
args('-exclude', '/bin/|/\\.|^gradlew.*|^LICENSE$|.project')
}

editorconfigCheck.dependsOn(editorconfigChecker)
Expand Down

0 comments on commit 5ec283d

Please sign in to comment.