Page Menu
Home
Phabricator
Search
Configure Global Search
Log In
Files
F15399580
D9117.id21659.diff
No One
Temporary
Actions
View File
Edit File
Delete File
View Transforms
Subscribe
Mute Notifications
Award Token
Flag For Later
Size
4 KB
Referenced Files
None
Subscribers
None
D9117.id21659.diff
View Options
diff --git a/src/lint/linter/ArcanistXHPASTLinter.php b/src/lint/linter/ArcanistXHPASTLinter.php
--- a/src/lint/linter/ArcanistXHPASTLinter.php
+++ b/src/lint/linter/ArcanistXHPASTLinter.php
@@ -43,6 +43,7 @@
const LINT_CLOSING_DECL_PAREN = 38;
const LINT_REUSED_ITERATOR_REFERENCE = 39;
const LINT_KEYWORD_CASING = 40;
+ const LINT_DOUBLE_QUOTE = 41;
private $naminghook;
private $switchhook;
@@ -99,6 +100,7 @@
self::LINT_CLOSING_DECL_PAREN => 'Declaration Formatting',
self::LINT_REUSED_ITERATOR_REFERENCE => 'Reuse of Iterator References',
self::LINT_KEYWORD_CASING => 'Keyword Conventions',
+ self::LINT_DOUBLE_QUOTE => 'Unnecessary Double Quotes',
);
}
@@ -132,6 +134,7 @@
self::LINT_CLOSING_DECL_PAREN => $warning,
self::LINT_REUSED_ITERATOR_REFERENCE => $warning,
self::LINT_KEYWORD_CASING => $warning,
+ self::LINT_DOUBLE_QUOTE => $advice,
// This is disabled by default because it implies a very strict policy
// which isn't necessary in the general case.
@@ -245,6 +248,7 @@
'lintClosingCallParen' => self::LINT_CLOSING_CALL_PAREN,
'lintClosingDeclarationParen' => self::LINT_CLOSING_DECL_PAREN,
'lintKeywordCasing' => self::LINT_KEYWORD_CASING,
+ 'lintStrings' => self::LINT_DOUBLE_QUOTE,
);
foreach ($method_codes as $method => $codes) {
@@ -2355,6 +2359,50 @@
}
}
+ private function lintStrings(XHPASTNode $root) {
+ $strings = $root->selectDescendantsOfType('n_STRING_SCALAR');
+
+ foreach ($strings as $string) {
+ // Check that constant strings use single quotes over double quotes,
+ // unless using double quotes would improve readability.
+ if ($string->isConstantString()) {
+ $concrete_string = $string->getConcreteString();
+
+ $single_quoted = ($concrete_string[0] === "'");
+ $contents = substr($concrete_string, 1, -1);
+
+ // Double quoted strings are allowed when the string contains the
+ // following characters.
+ static $allowed_chars = array(
+ '\0',
+ '\n',
+ '\r',
+ '\f',
+ '\t',
+ '\v',
+ '\x',
+ '\b',
+ '\'',
+ );
+
+ $valid = false;
+ foreach ($allowed_chars as $allowed_char) {
+ if (strpos($contents, $allowed_char) !== false) {
+ $valid = true;
+ }
+ }
+
+ if (!$valid && !$single_quoted) {
+ $this->raiseLintAtNode(
+ $string,
+ self::LINT_DOUBLE_QUOTE,
+ 'String does not require double quotes; use single quotes instead.',
+ "'".$contents."'");
+ }
+ }
+ }
+ }
+
public function getSuperGlobalNames() {
return array(
'$GLOBALS',
diff --git a/src/lint/linter/__tests__/xhpast/double-quote.lint-test b/src/lint/linter/__tests__/xhpast/double-quote.lint-test
new file mode 100644
--- /dev/null
+++ b/src/lint/linter/__tests__/xhpast/double-quote.lint-test
@@ -0,0 +1,17 @@
+<?php
+'foobar';
+"foobar";
+"foobar\n";
+"'foobar'";
+"foo{$bar}";
+'foo"bar"';
+~~~~~~~~~~
+advice:3:1
+~~~~~~~~~~
+<?php
+'foobar';
+'foobar';
+"foobar\n";
+"'foobar'";
+"foo{$bar}";
+'foo"bar"';
diff --git a/src/lint/linter/__tests__/xhpast/switches.lint-test b/src/lint/linter/__tests__/xhpast/switches.lint-test
--- a/src/lint/linter/__tests__/xhpast/switches.lint-test
+++ b/src/lint/linter/__tests__/xhpast/switches.lint-test
@@ -15,7 +15,7 @@
return;
case 4:
$x++;
- throw new Exception("!");
+ throw new Exception('!');
case 5:
break 2;
case 6:
diff --git a/src/lint/linter/__tests__/xhpast/wrong-concat-operator.lint-test b/src/lint/linter/__tests__/xhpast/wrong-concat-operator.lint-test
--- a/src/lint/linter/__tests__/xhpast/wrong-concat-operator.lint-test
+++ b/src/lint/linter/__tests__/xhpast/wrong-concat-operator.lint-test
@@ -1,8 +1,8 @@
<?php
-"a"."b";
-"a" + "b";
-"a" + $x;
-$x + $y + $z + "q" + 0;
+'a'.'b';
+'a' + 'b';
+'a' + $x;
+$x + $y + $z + 'q' + 0;
~~~~~~~~~~
error:3:1
error:4:1
File Metadata
Details
Attached
Mime Type
text/plain
Expires
Tue, Mar 18, 5:19 AM (2 w, 4 d ago)
Storage Engine
blob
Storage Format
Encrypted (AES-256-CBC)
Storage Handle
7704112
Default Alt Text
D9117.id21659.diff (4 KB)
Attached To
Mode
D9117: Add a linter rule for determining when single quotes should be used over double quotes.
Attached
Detach File
Event Timeline
Log In to Comment