mirror of
https://github.com/php-flasher/php-flasher.git
synced 2026-03-31 15:07:47 +01:00
47 lines
1005 B
Plaintext
47 lines
1005 B
Plaintext
{
|
|
"semi": true,
|
|
"trailingComma": "all",
|
|
"singleQuote": true,
|
|
"printWidth": 100,
|
|
"tabWidth": 4,
|
|
"arrowParens": "avoid",
|
|
"jsxBracketSameLine": true,
|
|
"overrides": [
|
|
{
|
|
"files": "*.scss",
|
|
"options": {
|
|
"parser": "scss",
|
|
"singleQuote": false,
|
|
"tabWidth": 4
|
|
}
|
|
},
|
|
{
|
|
"files": "*.json",
|
|
"options": {
|
|
"parser": "json",
|
|
"singleQuote": false,
|
|
"tabWidth": 4
|
|
}
|
|
},
|
|
{
|
|
"files": "*.{ts,tsx}",
|
|
"options": {
|
|
"parser": "typescript"
|
|
}
|
|
},
|
|
{
|
|
"files": "*.{js,jsx}",
|
|
"options": {
|
|
"parser": "babel"
|
|
}
|
|
},
|
|
{
|
|
"files": "*.yaml",
|
|
"options": {
|
|
"parser": "yaml",
|
|
"tabWidth": 4
|
|
}
|
|
}
|
|
]
|
|
}
|