Skip to content

Commit 276b1a3

Browse files
committed
Upgrade dependencies
1 parent cb14bd6 commit 276b1a3

File tree

11 files changed

+2140
-2038
lines changed

11 files changed

+2140
-2038
lines changed

.prettierrc

Lines changed: 18 additions & 12 deletions
Original file line numberDiff line numberDiff line change
@@ -1,18 +1,24 @@
11
{
2-
"semi": false,
3-
"singleQuote": true,
4-
"trailingComma": "all",
52
"arrowParens": "always",
6-
"singleAttributePerLine": true,
3+
"bracketSameLine": false,
4+
"bracketSpacing": true,
5+
"objectWrap": "preserve",
6+
"overrides": [
7+
{
8+
"files": "*.svelte",
9+
"options": {
10+
"parser": "svelte"
11+
}
12+
}
13+
],
714
"plugins": [
815
"prettier-plugin-svelte"
916
],
10-
"overrides": [
11-
{
12-
"files": "*.svelte",
13-
"options": {
14-
"parser": "svelte"
15-
}
16-
}
17-
]
17+
"printWidth": 80,
18+
"semi": false,
19+
"singleAttributePerLine": true,
20+
"singleQuote": true,
21+
"tabWidth": 2,
22+
"trailingComma": "all",
23+
"useTabs": false
1824
}

.rubocop.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
inherit_gem:
22
rubocop-shopify: rubocop.yml
33

4-
require:
4+
plugins:
55
- rubocop-rails
66
- rubocop-performance
77
- rubocop-rspec

.yarn/install-state.gz

22.3 KB
Binary file not shown.

.yarn/releases/yarn-4.6.0.cjs

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

.yarn/releases/yarn-4.9.1.cjs

Lines changed: 948 additions & 0 deletions
Large diffs are not rendered by default.

.yarnrc.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -4,4 +4,4 @@ enableGlobalCache: false
44

55
nodeLinker: node-modules
66

7-
yarnPath: .yarn/releases/yarn-4.6.0.cjs
7+
yarnPath: .yarn/releases/yarn-4.9.1.cjs

.zed/settings.json

Lines changed: 88 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,88 @@
1+
{
2+
// Input / Function
3+
"format_on_save": "off",
4+
"tab_size": 2,
5+
6+
// File Scan/Search
7+
"file_scan_exclusions": [
8+
".git/",
9+
".DS_Store",
10+
".ruby-lsp/",
11+
".yarn/",
12+
"log/",
13+
"vendor/"
14+
],
15+
16+
// Extensions
17+
"auto_install_extensions": {
18+
"html": true,
19+
"ruby": true,
20+
"scss": true,
21+
"svelte": true
22+
},
23+
24+
// Language / LSP
25+
"languages": {
26+
"JavaScript": {
27+
"format_on_save": "on",
28+
"formatter": [
29+
{
30+
"code_actions": {
31+
"source.fixAll.eslint": true
32+
}
33+
},
34+
{
35+
"external": {
36+
"command": "yarn",
37+
"arguments": ["prettier", "--stdin-filepath", "{buffer_path}"]
38+
}
39+
}
40+
]
41+
},
42+
"Ruby": {
43+
"language_servers": ["ruby-lsp", "rubocop", "!solargraph"],
44+
"format_on_save": "on"
45+
},
46+
"Svelte": {
47+
"format_on_save": "on",
48+
"formatter": [
49+
{
50+
"code_actions": {
51+
"source.fixAll.eslint": true
52+
}
53+
},
54+
{
55+
"external": {
56+
"command": "yarn",
57+
"arguments": ["prettier", "--stdin-filepath", "{buffer_path}"]
58+
}
59+
}
60+
]
61+
},
62+
"TypeScript": {
63+
"format_on_save": "on",
64+
"formatter": [
65+
{
66+
"code_actions": {
67+
"source.fixAll.eslint": true
68+
}
69+
},
70+
{
71+
"external": {
72+
"command": "yarn",
73+
"arguments": ["prettier", "--stdin-filepath", "{buffer_path}"]
74+
}
75+
}
76+
]
77+
}
78+
},
79+
"lsp": {
80+
"ruby-lsp": {
81+
"initialization_options": {
82+
"enabledFeatures": {
83+
"diagnostics": false
84+
}
85+
}
86+
}
87+
}
88+
}

0 commit comments

Comments
 (0)