We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent f2389b3 commit 2a492f5Copy full SHA for 2a492f5
docs/style-guide.rst
@@ -118,7 +118,7 @@ Source File Encoding
118
UTF-8 or ASCII encoding is preferred.
119
120
Imports
121
-==========
+=======
122
123
Import statements should always be placed at the top of the file.
124
@@ -519,6 +519,18 @@ No::
519
Other Recommendations
520
=====================
521
522
+* Strings should be quoted with double-quotes instead of single-quotes.
523
+
524
+Yes::
525
526
+ str = "foo";
527
+ str = "Hamlet says, 'To be or not to be...'";
528
529
+No::
530
531
+ str = 'bar';
532
+ str = '"Be yourself; everyone else is already taken." -Oscar Wilde';
533
534
* Surround operators with a single space on either side.
535
536
Yes::
0 commit comments