npm-zone
Version:
some useful description
60 lines • 1.25 kB
Plain Text
{
"singleQuote": true,
"arrowParens": "always",
"bracketSpacing": true,
"semi": true,
"trailingComma": "es5",
"singleAttributePerLine": true,
"importOrder": [
"node$",
"^(node:$)|^(node$)",
"^[a-zA-Z]",
"^@(.*)$",
"^&(.*)$",
"^%(.*)$",
"^\\$(.*)$",
"^#(.*)$",
"<THIRD_PARTY_MODULES>"
],
"importOrderSeparation": true,
"importOrderSortSpecifiers": true,
"parser": "typescript",
"filepath": "./src/*",
"plugins": [
"@trivago/prettier-plugin-sort-imports"
],
"overrides": [
{
"files": [
"**/*.json"
],
"options": {
"parser": "json"
}
},
{
"files": [
"**/*.html"
],
"options": {
"parser": "html"
}
},
{
"files": [
"**/*.css"
],
"options": {
"parser": "css"
}
},
{
"files": [
"**/*.md"
],
"options": {
"parser": "markdown"
}
}
]
}