mirror of
https://github.com/Mintplex-Labs/anything-llm
synced 2026-04-25 17:15:37 +02:00
devcontainer v1 (#297)
Implement support for GitHub codespaces and VSCode devcontainers --------- Co-authored-by: timothycarambat <rambat1010@gmail.com> Co-authored-by: Sean Hatfield <seanhatfield5@gmail.com>
This commit is contained in:
committed by
GitHub
parent
5172bceec3
commit
990a2e85bf
38
.prettierrc
Normal file
38
.prettierrc
Normal file
@@ -0,0 +1,38 @@
|
||||
{
|
||||
"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" }
|
||||
}
|
||||
]
|
||||
}
|
||||
Reference in New Issue
Block a user