mirror of
https://dev.azure.com/hugendubel/ISA/_git/ISA-Frontend
synced 2025-12-28 22:42:11 +01:00
38 lines
609 B
Plaintext
38 lines
609 B
Plaintext
{
|
|
"singleQuote": true,
|
|
"semi": true,
|
|
"trailingComma": "all",
|
|
"tabWidth": 2,
|
|
"bracketSpacing": true,
|
|
"printWidth": 80,
|
|
"endOfLine": "crlf",
|
|
"arrowParens": "always",
|
|
"quoteProps": "consistent",
|
|
"overrides": [
|
|
{
|
|
"files": "*.html",
|
|
"options": {
|
|
"parser": "html"
|
|
}
|
|
},
|
|
{
|
|
"files": "*.component.html",
|
|
"options": {
|
|
"parser": "angular"
|
|
}
|
|
},
|
|
{
|
|
"files": "*.scss",
|
|
"options": {
|
|
"singleQuote": false
|
|
}
|
|
},
|
|
{
|
|
"files": "*.json",
|
|
"options": {
|
|
"printWidth": 80
|
|
}
|
|
}
|
|
]
|
|
}
|