mirror of
https://github.com/decaf-dev/obsidian-vault-explorer.git
synced 2026-07-22 10:10:31 +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,
|
"tabWidth": 4,
|
||||||
"useTabs": true,
|
"useTabs": true,
|
||||||
"endOfLine": "lf",
|
"endOfLine": "lf",
|
||||||
"charset": "utf-8",
|
"semi": true,
|
||||||
"insertFinalNewline": false,
|
"singleQuote": false,
|
||||||
"semi": true,
|
"trailingComma": "none"
|
||||||
"quotes": "double"
|
|
||||||
}
|
}
|
||||||
|
|
|
||||||
BIN
bun.lockb
BIN
bun.lockb
Binary file not shown.
|
|
@ -10,7 +10,8 @@
|
||||||
"compile": "tsc -noEmit -skipLibCheck",
|
"compile": "tsc -noEmit -skipLibCheck",
|
||||||
"check": "svelte-check --tsconfig ./tsconfig.json",
|
"check": "svelte-check --tsconfig ./tsconfig.json",
|
||||||
"test": "jest --config jest.config.js",
|
"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": [],
|
"keywords": [],
|
||||||
"author": "DecafDev",
|
"author": "DecafDev",
|
||||||
|
|
@ -28,6 +29,7 @@
|
||||||
"esbuild-svelte": "^0.9.0",
|
"esbuild-svelte": "^0.9.0",
|
||||||
"jest": "^29.7.0",
|
"jest": "^29.7.0",
|
||||||
"obsidian": "latest",
|
"obsidian": "latest",
|
||||||
|
"prettier": "^3.5.3",
|
||||||
"svelte-check": "^4.1.3",
|
"svelte-check": "^4.1.3",
|
||||||
"svelte-preprocess": "^6.0.3",
|
"svelte-preprocess": "^6.0.3",
|
||||||
"ts-auto-guard": "^5.0.0",
|
"ts-auto-guard": "^5.0.0",
|
||||||
|
|
|
||||||
Loading…
Reference in a new issue