JavaScript allows you to define strings in one of three ways: double quotes, single quotes, and backticks (as of ECMAScript 6). Each of these lines creates a string and, in some cases, can be used interchangeably. The choice of how to define strings in a codebase is a stylistic one outside of template literals (which allow embedded of expressions to be interpreted). Many codebases require strings to be defined in a consistent manner. This rule takes as parameter the style you prefer ("double", "single" or "backtick") default is double.
Just wondering if any final decision was made on this.
I found a plip that is requesting to use black as our python formatter, which means double quotes instead of single quotes for python code.
Would it then not be more consistent to use double quotes everywhere at this point in time?
Or are the js developers all in favor of single quotes.
I would like this to see the quotes used consistently across plone and js, but that's just my personal opinion.