chore: disable trailing commas

This commit is contained in:
DecafDev 2025-05-02 19:52:49 -06:00
parent 2bd9b85c1c
commit 6e68f4e905
4 changed files with 17 additions and 8 deletions

8
.prettierignore Normal file
View file

@ -0,0 +1,8 @@
# Ignore markdown files
*.md
**/*.md
# Other common files to ignore
node_modules/
dist/
.git/

View file

@ -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

Binary file not shown.

View file

@ -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",