Skip to content

Commit 953d778

Browse files
yhk1038claude
andcommitted
fix(ci): add ESLint config and fix Bundler version compatibility
- Add .eslintrc.json for VSCode plugin ESLint v8 compatibility - Downgrade Bundler from 2.7.2 to 2.5.23 to support Ruby 3.0/3.1 🤖 Generated with [Claude Code](https://claude.com/claude-code) Co-Authored-By: Claude Opus 4.5 <noreply@anthropic.com>
1 parent 98173c3 commit 953d778

File tree

2 files changed

+29
-1
lines changed

2 files changed

+29
-1
lines changed

Gemfile.lock

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -88,4 +88,4 @@ DEPENDENCIES
8888
t-ruby!
8989

9090
BUNDLED WITH
91-
2.7.2
91+
2.5.23

editors/vscode/.eslintrc.json

Lines changed: 28 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,28 @@
1+
{
2+
"root": true,
3+
"parser": "@typescript-eslint/parser",
4+
"parserOptions": {
5+
"ecmaVersion": 2020,
6+
"sourceType": "module"
7+
},
8+
"plugins": [
9+
"@typescript-eslint"
10+
],
11+
"extends": [
12+
"eslint:recommended",
13+
"plugin:@typescript-eslint/recommended"
14+
],
15+
"rules": {
16+
"@typescript-eslint/naming-convention": "off",
17+
"@typescript-eslint/semi": "warn",
18+
"curly": "warn",
19+
"eqeqeq": "warn",
20+
"no-throw-literal": "warn",
21+
"semi": "off"
22+
},
23+
"ignorePatterns": [
24+
"out",
25+
"dist",
26+
"**/*.d.ts"
27+
]
28+
}

0 commit comments

Comments
 (0)