Skip to content

Commit

Permalink
fix: use double quotes for dedicated css styling files where possible
Browse files Browse the repository at this point in the history
  • Loading branch information
G-Rath committed Dec 5, 2019
1 parent 80e9893 commit c4b8437
Showing 1 changed file with 9 additions and 1 deletion.
10 changes: 9 additions & 1 deletion .prettierrc.json
Original file line number Diff line number Diff line change
Expand Up @@ -11,5 +11,13 @@
"endOfLine": "lf",
"arrowParens": "avoid",
"trailingComma": "none",
"htmlWhitespaceSensitivity": "ignore"
"htmlWhitespaceSensitivity": "ignore",
"overrides": [
{
"files": ["*.sass", "*.scss", "*.css", "*.less", "*.html"],
"options": {
"singleQuote": false
}
}
]
}

0 comments on commit c4b8437

Please sign in to comment.