From 126fa4628fdf203669d6541964ecb33e90d5bee2 Mon Sep 17 00:00:00 2001 From: Yurii Dubinka Date: Sun, 3 Oct 2021 12:31:40 +0300 Subject: [PATCH] #117: exclude test/resources from xcop inspection --- Rakefile | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Rakefile b/Rakefile index 6eb9b6b..8b93eba 100644 --- a/Rakefile +++ b/Rakefile @@ -94,7 +94,7 @@ desc "Validate all XML/XSL/XSD/HTML files for formatting" Xcop::RakeTask.new :xcop do |task| task.license = "license.txt" task.includes = %w[**/*.xml **/*.xsl **/*.xsd **/*.html] - task.excludes = %w[target/**/* coverage/**/* wp/**/*] + task.excludes = %w[target/**/* coverage/**/* wp/**/* test/resources/*] end # @todo #/DEV Enable rule "Checks SQL against the ANSI syntax" fully.