Add documentation based on docusarus for opendbm

This commit is contained in:
Rudy Haryanto
2022-10-04 03:34:47 +07:00
parent a574bc6870
commit c6bc952569
62 changed files with 56077 additions and 5 deletions

36
docs/.prettierrc Normal file
View File

@@ -0,0 +1,36 @@
{
"overrides": [
{
"files": "*.js",
"options": {
"arrowParens": "avoid",
"bracketSpacing": false,
"bracketSameLine": true,
"printWidth": 80,
"singleQuote": true,
"trailingComma": "es5",
"endOfLine": "auto"
}
},
{
"files": "*.md",
"options": {
"arrowParens": "always",
"bracketSpacing": true,
"bracketSameLine": true,
"printWidth": 66,
"proseWrap": "preserve",
"singleQuote": true,
"trailingComma": "none",
"endOfLine": "auto"
}
},
{
"files": ["*.scss", "*.css"],
"options": {
"printWidth": 80,
"endOfLine": "auto"
}
}
]
}