Skip to content

Commit aff15fc

Browse files
committed
Update gem to v2
1 parent 565e244 commit aff15fc

173 files changed

Lines changed: 8753 additions & 9471 deletions

File tree

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

.eslintignore

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

.eslintrc.js

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

.github/workflows/lint.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -16,7 +16,7 @@ jobs:
1616
- name: Setup Node.js
1717
uses: actions/setup-node@v1
1818
with:
19-
node-version: 14.x
19+
node-version: 22.x
2020

2121
- run: yarn
2222
- run: yarn lint

.github/workflows/release.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -23,7 +23,7 @@ jobs:
2323
- name: setup node
2424
uses: actions/setup-node@v1
2525
with:
26-
node-version: 16
26+
node-version: 22.x
2727

2828
- name: install Rust stable
2929
uses: actions-rs/toolchain@v1

.prettierrc.json

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

.vscode/extensions.json

Lines changed: 11 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,11 @@
1+
{
2+
// See http://go.microsoft.com/fwlink/?LinkId=827846
3+
// for the documentation about the extensions.json format
4+
"recommendations": [
5+
"biomejs.biome",
6+
"tamasfe.even-better-toml",
7+
"rust-lang.rust-analyzer",
8+
"gem-vscode.vscode-plugin-gem",
9+
"streetsidesoftware.code-spell-checker"
10+
]
11+
}

.vscode/gem.code-snippets

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

.vscode/settings.json

Lines changed: 9 additions & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -6,17 +6,17 @@
66
"scss.validate": false,
77
"typescript.preferences.importModuleSpecifier": "non-relative",
88
"typescript.tsdk": "node_modules/typescript/lib",
9-
"eslint.validate": ["typescript", "typescriptreact"],
109
"editor.formatOnSave": true,
11-
"editor.defaultFormatter": "esbenp.prettier-vscode",
12-
"[xml]": {
13-
"editor.defaultFormatter": null
10+
"editor.defaultFormatter": "biomejs.biome",
11+
"editor.codeActionsOnSave": {
12+
"source.fixAll": "explicit",
13+
"source.organizeImports": "always"
1414
},
1515
"[typescript]": {
16-
"editor.formatOnSave": false
16+
"editor.defaultFormatter": "biomejs.biome"
1717
},
18-
"editor.codeActionsOnSave": {
19-
"source.fixAll": "explicit"
18+
"[xml]": {
19+
"editor.defaultFormatter": null
2020
},
2121
"[rust]": {
2222
"editor.tabSize": 4,
@@ -26,6 +26,8 @@
2626
"[dart]": {
2727
"editor.rulers": [120]
2828
},
29+
"eslint.enable": false,
30+
"prettier.enable": false,
2931
"files.eol": "\n",
3032
"i18n-ally.enabledFrameworks": ["custom"],
3133
"i18n-ally.localesPaths": ["packages/webapp/src/locales"],

.zed/settings.json

Lines changed: 60 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,60 @@
1+
// Folder-specific settings
2+
//
3+
// For a full list of overridable settings, and general information on folder-specific settings,
4+
// see the documentation: https://zed.dev/docs/configuring-zed#settings-files
5+
{
6+
"auto_install_extension": {
7+
"biome": true,
8+
"emmet": true,
9+
"toml": true,
10+
"html": true,
11+
"gem": true
12+
},
13+
"tab_size": 2,
14+
"formatter": {
15+
"language_server": {
16+
"name": "biome"
17+
}
18+
},
19+
"code_actions_on_format": {
20+
"source.fixAll.biome": true,
21+
"source.organizeImports.biome": true
22+
},
23+
"language_servers": [
24+
"vtsls",
25+
"!typescript-language-server",
26+
// use biome
27+
"!prettier",
28+
"!eslint",
29+
"..."
30+
],
31+
"lsp": {
32+
"vtsls": {
33+
"settings": {
34+
"typescript": {
35+
"tsdk": "node_modules/typescript/lib",
36+
"preferences": {
37+
"importModuleSpecifier": "non-relative"
38+
}
39+
}
40+
}
41+
},
42+
"rust-analyzer": {
43+
"initialization_options": {
44+
"check": {
45+
"command": "clippy"
46+
}
47+
}
48+
}
49+
},
50+
"languages": {
51+
"Rust": {
52+
"tab_size": 4,
53+
"formatter": {
54+
"language_server": {
55+
"name": "rust-analyzer"
56+
}
57+
}
58+
}
59+
}
60+
}

0 commit comments

Comments
 (0)