Page Menu
Home
Phabricator
Search
Configure Global Search
Log In
Files
F15331618
D11342.id27264.diff
No One
Temporary
Actions
View File
Edit File
Delete File
View Transforms
Subscribe
Mute Notifications
Award Token
Flag For Later
Size
1 KB
Referenced Files
None
Subscribers
None
D11342.id27264.diff
View Options
diff --git a/src/lint/linter/ArcanistChmodLinter.php b/src/lint/linter/ArcanistChmodLinter.php
--- a/src/lint/linter/ArcanistChmodLinter.php
+++ b/src/lint/linter/ArcanistChmodLinter.php
@@ -27,20 +27,18 @@
return 'chmod';
}
- protected function shouldLintBinaryFiles() {
- return true;
- }
-
public function getLintNameMap() {
return array(
self::LINT_INVALID_EXECUTABLE => pht('Invalid Executable'),
);
}
- public function getLintSeverityMap() {
- return array(
- self::LINT_INVALID_EXECUTABLE => ArcanistLintSeverity::SEVERITY_WARNING,
- );
+ protected function getDefaultMessageSeverity($code) {
+ return ArcanistLintSeverity::SEVERITY_WARNING;
+ }
+
+ protected function shouldLintBinaryFiles() {
+ return true;
}
public function lintPath($path) {
@@ -97,10 +95,11 @@
self::LINT_INVALID_EXECUTABLE,
pht("'%s' files should not be executable.", $mime));
return;
- }
- // Path is a binary file, which makes it a valid executable.
- return;
+ default:
+ // Path is a binary file, which makes it a valid executable.
+ return;
+ }
} else if ($this->getShebang($path)) {
// Path contains a shebang, which makes it a valid executable.
return;
File Metadata
Details
Attached
Mime Type
text/plain
Expires
Sat, Mar 8, 11:56 AM (4 w, 1 d ago)
Storage Engine
blob
Storage Format
Encrypted (AES-256-CBC)
Storage Handle
7382162
Default Alt Text
D11342.id27264.diff (1 KB)
Attached To
Mode
D11342: Minor changes to `ArcanistChmodLinter`
Attached
Detach File
Event Timeline
Log In to Comment