mirror of
https://gitlab.com/freepascal.org/lazarus/lazarus.git
synced 2025-08-18 08:39:48 +02:00
POChecker: added ability to ignore master files in directories where .pocheckerignore file is present
git-svn-id: trunk@60211 -
This commit is contained in:
parent
93e8639699
commit
b439763004
@ -633,7 +633,7 @@ begin
|
||||
begin
|
||||
Str := S[i];
|
||||
//skip files that do not exist (anymore)
|
||||
if FileExistsUtf8(Str) then
|
||||
if (FileExistsUtf8(Str)) and (not FileExistsUTF8(ExtractFilePath(Str) + '.pocheckerignore')) then
|
||||
begin
|
||||
Idx := MasterPoListBox.Items.IndexOf(Str);
|
||||
if (Idx = -1) then
|
||||
|
Loading…
Reference in New Issue
Block a user