mirror of
https://github.com/Mintplex-Labs/anything-llm.git
synced 2024-11-05 06:20:10 +01:00
39 lines
692 B
Plaintext
39 lines
692 B
Plaintext
|
{
|
||
|
"tabWidth": 2,
|
||
|
"useTabs": false,
|
||
|
"endOfLine": "lf",
|
||
|
"semi": true,
|
||
|
"singleQuote": false,
|
||
|
"printWidth": 80,
|
||
|
"trailingComma": "es5",
|
||
|
"bracketSpacing": true,
|
||
|
"bracketSameLine": false,
|
||
|
"overrides": [
|
||
|
{
|
||
|
"files": ["*.js", "*.mjs", "*.jsx"],
|
||
|
"options": {
|
||
|
"parser": "flow",
|
||
|
"arrowParens": "always"
|
||
|
}
|
||
|
},
|
||
|
{
|
||
|
"files": "*.config.js",
|
||
|
"options": {
|
||
|
"semi": false,
|
||
|
"parser": "flow",
|
||
|
"trailingComma": "none"
|
||
|
}
|
||
|
},
|
||
|
{
|
||
|
"files": "*.html",
|
||
|
"options": {
|
||
|
"bracketSameLine": true
|
||
|
}
|
||
|
},
|
||
|
{
|
||
|
"files": ".prettierrc",
|
||
|
"options": { "parser": "json" }
|
||
|
}
|
||
|
]
|
||
|
}
|