Skip to content
Projects
Groups
Snippets
Help
Loading...
Help
Support
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in
Toggle navigation
P
Postgres FD Implementation
Project overview
Project overview
Details
Activity
Releases
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Issues
0
Issues
0
List
Boards
Labels
Milestones
Merge Requests
0
Merge Requests
0
CI / CD
CI / CD
Pipelines
Jobs
Schedules
Analytics
Analytics
CI / CD
Repository
Value Stream
Wiki
Wiki
Snippets
Snippets
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Create a new issue
Jobs
Commits
Issue Boards
Open sidebar
Abuhujair Javed
Postgres FD Implementation
Commits
0fcf5e0e
Commit
0fcf5e0e
authored
Jun 27, 2018
by
Peter Eisentraut
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
Fix whitespace
parent
ae5ed75e
Changes
3
Hide whitespace changes
Inline
Side-by-side
Showing
3 changed files
with
3 additions
and
5 deletions
+3
-5
src/test/perl/TestLib.pm
src/test/perl/TestLib.pm
+2
-2
src/tools/perlcheck/find_perl_files
src/tools/perlcheck/find_perl_files
+1
-2
src/tools/perlcheck/perlcriticrc
src/tools/perlcheck/perlcriticrc
+0
-1
No files found.
src/test/perl/TestLib.pm
View file @
0fcf5e0e
...
...
@@ -245,7 +245,7 @@ sub append_to_file
or
die
"
could not write
\"
$filename
\"
: $!
";
print
$fh
$str
;
close
$fh
;
return
;
return
;
}
# Check that all file/dir modes in a directory match the expected values,
...
...
@@ -521,7 +521,7 @@ sub command_checks_all
{
like
(
$stderr
,
$re
,
"
$test_name
stderr /
$re
/
");
}
return
;
}
...
...
src/tools/perlcheck/find_perl_files
View file @
0fcf5e0e
# src/tools/perlcheck/find_perl_files
# shell function to find all perl files in the source tree
...
...
@@ -11,5 +10,5 @@ find_perl_files () {
find . -type f -perm -100 -exec file {} \; -print |
egrep -i ':.*perl[0-9]*\>' |
cut -d: -f1
} | sort -u | grep -v '^\./\.git/'
} | sort -u | grep -v '^\./\.git/'
}
src/tools/perlcheck/perlcriticrc
View file @
0fcf5e0e
...
...
@@ -16,4 +16,3 @@ theme = core
# for now raise severity of this to level 5
[Subroutines::RequireFinalReturn]
severity = 5
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment