Skip to content

Commit fd96319

Browse files
committed
chore: switch to tabs for indentation
1 parent 56f53c3 commit fd96319

File tree

3 files changed

+21
-15
lines changed

3 files changed

+21
-15
lines changed

.editorconfig

Lines changed: 6 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,6 @@
1+
# https://editorconfig.org
2+
root = true
3+
4+
[*]
5+
indent_style = tab
6+
end_of_line = lf

.prettierignore

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -4,3 +4,4 @@ pnpm-lock.yaml
44
.vscode/setting.json
55
test-fixtures
66
test-snapshots
7+
playwright-report

.prettierrc

Lines changed: 14 additions & 15 deletions
Original file line numberDiff line numberDiff line change
@@ -1,17 +1,16 @@
11
{
2-
"printWidth": 110,
3-
"singleQuote": false,
4-
"semi": true,
5-
"useTabs": false,
6-
"tabWidth": 2,
7-
"trailingComma": "es5",
8-
"overrides": [
9-
{
10-
"// comment": "wrangler doesn't seem to accept wrangler.jsonc with trailing commas",
11-
"files": ["**/wrangler.jsonc"],
12-
"options": {
13-
"trailingComma": "none"
14-
}
15-
}
16-
]
2+
"printWidth": 110,
3+
"singleQuote": false,
4+
"semi": true,
5+
"useTabs": true,
6+
"trailingComma": "es5",
7+
"overrides": [
8+
{
9+
"// comment": "wrangler doesn't seem to accept wrangler.jsonc with trailing commas",
10+
"files": ["**/wrangler.jsonc"],
11+
"options": {
12+
"trailingComma": "none"
13+
}
14+
}
15+
]
1716
}

0 commit comments

Comments
 (0)