Skip to content

Commit a02c4b2

Browse files
authored
Merge pull request #1059 from yiliang114/feat/jinjing/write-and-read-file-in-vscode
feat: VSCode Extension Implementation
2 parents 0055399 + 5ef3d32 commit a02c4b2

File tree

120 files changed

+21737
-83
lines changed

Some content is hidden

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

120 files changed

+21737
-83
lines changed

README.md

Lines changed: 6 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -88,6 +88,12 @@ npm install -g .
8888
brew install qwen-code
8989
```
9090

91+
## VS Code Extension
92+
93+
In addition to the CLI tool, Qwen Code also provides a **VS Code extension** that brings AI-powered coding assistance directly into your editor with features like file system operations, native diffing, interactive chat, and more.
94+
95+
> 📦 The extension is currently in development. For installation, features, and development guide, see the [VS Code Extension README](./packages/vscode-ide-companion/README.md).
96+
9197
## Quick Start
9298

9399
```bash

eslint.config.js

Lines changed: 7 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -75,6 +75,8 @@ export default tseslint.config(
7575
},
7676
},
7777
rules: {
78+
// We use TypeScript for React components; prop-types are unnecessary
79+
'react/prop-types': 'off',
7880
// General Best Practice Rules (subset adapted for flat config)
7981
'@typescript-eslint/array-type': ['error', { default: 'array-simple' }],
8082
'arrow-body-style': ['error', 'as-needed'],
@@ -111,10 +113,14 @@ export default tseslint.config(
111113
{
112114
allow: [
113115
'react-dom/test-utils',
116+
'react-dom/client',
114117
'memfs/lib/volume.js',
115118
'yargs/**',
116119
'msw/node',
117-
'**/generated/**'
120+
'**/generated/**',
121+
'./styles/tailwind.css',
122+
'./styles/App.css',
123+
'./styles/style.css'
118124
],
119125
},
120126
],

0 commit comments

Comments
 (0)