Settings for forcing/prefering single/double quotes for strings
Open
- Dominant language
- Python
- Stars
- 14k
- Forks
- 904
- PR merge metrics
- No merged PRs in 30d
Description
Just a setting so quoting style can be unified across a codebase.
e.g.
for the three strings `abc`, `a'c`, `a"c`
`prefer_single_quotes` -> `'abc'`, `"a'c"`, `'a"c'`
`prefer_double_quotes` -> `"abc"`, `"a'c"`, `'a"c'`
`force_single_quotes` -> `'abc'`, `'a\'c'`, `'a"c'`
`force_double_quotes` -> `"abc"`, `"a'c"`, `"a\"c"`
Contributor guide
Assessment
This issue has not been assessed yet.