Skip to content

Commit 36ccc5d

Browse files
committed
chore: ratchet up linting
1 parent a91a9c2 commit 36ccc5d

36 files changed

+1359
-1166
lines changed

.prettierignore

Lines changed: 26 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,26 @@
1+
# Dependencies
2+
node_modules/
3+
package-lock.json
4+
pnpm-lock.yaml
5+
yarn.lock
6+
7+
# Build outputs
8+
dist/
9+
build/
10+
coverage/
11+
*.min.js
12+
*.min.css
13+
14+
# Generated files
15+
*.d.ts
16+
tsconfig.tsbuildinfo
17+
18+
# Config files that should not be formatted
19+
.env*
20+
.git/
21+
22+
# Any legacy JavaScript files (if they exist)
23+
*.js
24+
*.mjs
25+
!eslint.config.mjs
26+
!*.config.mjs

.prettierrc

Lines changed: 0 additions & 6 deletions
This file was deleted.

.prettierrc.json

Lines changed: 14 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,14 @@
1+
{
2+
"singleQuote": true,
3+
"trailingComma": "all",
4+
"printWidth": 100,
5+
"semi": false,
6+
"arrowParens": "always",
7+
"bracketSpacing": true,
8+
"endOfLine": "lf",
9+
"useTabs": false,
10+
"tabWidth": 2,
11+
"quoteProps": "as-needed",
12+
"bracketSameLine": false,
13+
"proseWrap": "preserve"
14+
}

0 commit comments

Comments
 (0)