mirror of
https://github.com/Mintplex-Labs/anything-llm.git
synced 2024-11-05 06:20:10 +01:00
990a2e85bf
Implement support for GitHub codespaces and VSCode devcontainers --------- Co-authored-by: timothycarambat <rambat1010@gmail.com> Co-authored-by: Sean Hatfield <seanhatfield5@gmail.com>
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" }
|
|
}
|
|
]
|
|
}
|