From 3bf3f25f9a2bb86fed63aa2fff5cbcce84d15fd9 Mon Sep 17 00:00:00 2001 From: Axel Ricard Date: Thu, 5 Oct 2023 16:45:34 +0200 Subject: [PATCH] add --exclude cli option This excludes given files or directory from linting --- src/dscanner/main.d | 23 +++++++++++++++++++++-- 1 file changed, 21 insertions(+), 2 deletions(-) diff --git a/src/dscanner/main.d b/src/dscanner/main.d index f412dc5..5916576 100644 --- a/src/dscanner/main.d +++ b/src/dscanner/main.d @@ -72,6 +72,7 @@ else string symbolName; string configLocation; string[] importPaths; + string[] excludePaths; bool printVersion; bool explore; bool verbose; @@ -108,6 +109,7 @@ else "resolveMessage", &resolveMessage, "applySingle", &applySingleFixes, "I", &importPaths, + "exclude", &excludePaths, "version", &printVersion, "muffinButton", &muffin, "explore", &explore, @@ -197,6 +199,21 @@ else } } + if (excludePaths.length) + { + args = expandArgs(args); + + string[] newArgs = [args[0]]; + foreach(arg; args[1 .. $]) + { + if(!excludePaths.map!(p => arg.isSubpathOf(p)) + .fold!((a, b) => a || b)) + newArgs ~= arg; + } + + args = newArgs; + } + if (!errorFormat.length) errorFormat = defaultErrorFormat; else if (auto errorFormatSuppl = errorFormat in errorFormatMap) @@ -208,8 +225,7 @@ else .replace("\\n", "\n") .replace("\\t", "\t"); - const(string[]) absImportPaths = importPaths.map!(a => a.absolutePath() - .buildNormalizedPath()).array(); + const(string[]) absImportPaths = importPaths.map!absoluteNormalizedPath.array; ModuleCache moduleCache; @@ -450,6 +466,9 @@ Options: modules. This option can be passed multiple times to specify multiple directories. + --exclude ..., + Specify files or directories that will be ignored by D-Scanner. + --syntaxCheck , -s Lexes and parses sourceFile, printing the line and column number of any syntax errors to stdout. One error or warning is printed per line,