mirror of
https://github.com/decaf-dev/obsidian-vault-explorer.git
synced 2026-07-22 05:11:41 +00:00
chore: disable trailing commas
This commit is contained in:
parent
2bd9b85c1c
commit
6e68f4e905
4 changed files with 17 additions and 8 deletions
8
.prettierignore
Normal file
8
.prettierignore
Normal file
|
|
@ -0,0 +1,8 @@
|
|||
# Ignore markdown files
|
||||
*.md
|
||||
**/*.md
|
||||
|
||||
# Other common files to ignore
|
||||
node_modules/
|
||||
dist/
|
||||
.git/
|
||||
13
.prettierrc
13
.prettierrc
|
|
@ -1,9 +1,8 @@
|
|||
{
|
||||
"tabWidth": 4,
|
||||
"useTabs": true,
|
||||
"endOfLine": "lf",
|
||||
"charset": "utf-8",
|
||||
"insertFinalNewline": false,
|
||||
"semi": true,
|
||||
"quotes": "double"
|
||||
"tabWidth": 4,
|
||||
"useTabs": true,
|
||||
"endOfLine": "lf",
|
||||
"semi": true,
|
||||
"singleQuote": false,
|
||||
"trailingComma": "none"
|
||||
}
|
||||
|
|
|
|||
BIN
bun.lockb
BIN
bun.lockb
Binary file not shown.
|
|
@ -10,7 +10,8 @@
|
|||
"compile": "tsc -noEmit -skipLibCheck",
|
||||
"check": "svelte-check --tsconfig ./tsconfig.json",
|
||||
"test": "jest --config jest.config.js",
|
||||
"lint": "eslint --ext .ts,.js,.svelte ."
|
||||
"lint": "eslint --ext .ts,.js,.svelte .",
|
||||
"format": "prettier --write --ignore-path .prettierignore ."
|
||||
},
|
||||
"keywords": [],
|
||||
"author": "DecafDev",
|
||||
|
|
@ -28,6 +29,7 @@
|
|||
"esbuild-svelte": "^0.9.0",
|
||||
"jest": "^29.7.0",
|
||||
"obsidian": "latest",
|
||||
"prettier": "^3.5.3",
|
||||
"svelte-check": "^4.1.3",
|
||||
"svelte-preprocess": "^6.0.3",
|
||||
"ts-auto-guard": "^5.0.0",
|
||||
|
|
|
|||
Loading…
Reference in a new issue