feat: prettier, gitignore config
This commit is contained in:
parent
55691ac956
commit
e46cc81c8d
3 changed files with 33 additions and 0 deletions
9
.gitignore
vendored
9
.gitignore
vendored
|
|
@ -1 +1,10 @@
|
||||||
|
.venv/
|
||||||
|
doc/tags
|
||||||
|
*.log
|
||||||
|
build
|
||||||
|
io
|
||||||
|
debug
|
||||||
|
venv/
|
||||||
|
CLAUDE.md
|
||||||
|
__pycache__
|
||||||
node_modules/
|
node_modules/
|
||||||
|
|
|
||||||
7
.prettierignore
Normal file
7
.prettierignore
Normal file
|
|
@ -0,0 +1,7 @@
|
||||||
|
.pytest_cache/
|
||||||
|
node_modules/
|
||||||
|
.venv/
|
||||||
|
build/
|
||||||
|
dist/
|
||||||
|
*.pyc
|
||||||
|
__pycache__/
|
||||||
17
.prettierrc
Normal file
17
.prettierrc
Normal file
|
|
@ -0,0 +1,17 @@
|
||||||
|
{
|
||||||
|
"proseWrap": "always",
|
||||||
|
"printWidth": 80,
|
||||||
|
"tabWidth": 2,
|
||||||
|
"useTabs": false,
|
||||||
|
"trailingComma": "none",
|
||||||
|
"semi": false,
|
||||||
|
"singleQuote": true,
|
||||||
|
"overrides": [
|
||||||
|
{
|
||||||
|
"files": ["**/*.md"],
|
||||||
|
"options": {
|
||||||
|
"parser": "markdown"
|
||||||
|
}
|
||||||
|
}
|
||||||
|
]
|
||||||
|
}
|
||||||
Loading…
Add table
Add a link
Reference in a new issue