initial tool setup and basic styles

This commit is contained in:
2025-09-04 14:13:55 +02:00
parent b212b4f596
commit fc8b07185d
19 changed files with 9016 additions and 68 deletions

16
.prettierrc.js Normal file
View File

@@ -0,0 +1,16 @@
export default {
semi: false,
singleQuote: true,
tabWidth: 2,
trailingComma: 'es5',
plugins: ['prettier-plugin-organize-imports'],
overrides: [
{
files: '*.mdx',
options: {
parser: 'mdx',
tabWidth: 4
}
}
],
}