File tree 4 files changed +51
-12
lines changed
4 files changed +51
-12
lines changed Original file line number Diff line number Diff line change @@ -3,5 +3,10 @@ All notable changes to the "leetcode" extension will be documented in this file.
3
3
4
4
Check [ Keep a Changelog] ( http://keepachangelog.com/ ) for recommendations on how to structure this file.
5
5
6
- ## [ Unreleased]
7
- - Initial release
6
+ ## [ 0.1.0]
7
+ ### Added
8
+ - Sign in/out to LeetCode
9
+ - Switch and create session
10
+ - Show problems in explorer
11
+ - Search problems by keywords
12
+ - Submit solutions to LeetCode
Original file line number Diff line number Diff line change 1
- # leetcode README
2
-
3
- ## Features
1
+ # LeetCode
4
2
3
+ Solve LeetCode problems in VS Code.
4
+ [ 中文] ( #中文 )
5
+ [ English] ( #English )
5
6
7
+ # English
6
8
## Requirements
9
+ - [ Node.js] ( https://nodejs.org )
10
+ > NOTE: Please make sure that Node is in your PATH environment variable. You can check this by running: ` node -v ` .
11
+
12
+ ## Features
13
+ - Sign in/out to LeetCode
14
+ - Switch and create session
15
+ - Show problems in explorer
16
+ - Search problems by keywords
17
+ - Submit solutions to LeetCode
7
18
19
+ ### Sign In and Sign Out
8
20
9
- ## Extension Settings
21
+ ### Switch and Create Session
10
22
23
+ ### Show Problems in Explorer
11
24
12
- ## Known Issues
25
+ ### Search Problems by Keywords
13
26
27
+ ### Submit Solutions to LeetCode
14
28
15
29
## Release Notes
30
+
31
+ Refer to [ CHANGELOG] ( CHANGELOG.md )
32
+
33
+ ## Acknowledgement
34
+
35
+ This extension is based on [ @skygragon ] ( https://github.com/skygragon ) 's [ leetcode-cli] ( https://github.com/skygragon/leetcode-cli ) open source project.
Original file line number Diff line number Diff line change 1
1
{
2
- "name" : " leetcode" ,
2
+ "name" : " vscode- leetcode" ,
3
3
"displayName" : " LeetCode" ,
4
- "description" : " " ,
5
- "version" : " 0.0.1" ,
6
- "publisher" : " ShengChen" ,
4
+ "description" : " Solve LeetCode problems in VS Code" ,
5
+ "version" : " 0.1.0" ,
6
+ "author" : " Sheng Chen" ,
7
+ "publisher" : " shengchen" ,
8
+ "icon" : " resources/LeetCode.png" ,
7
9
"engines" : {
8
10
"vscode" : " ^1.20.0"
9
11
},
12
+ "repository" : {
13
+ "type" : " git" ,
14
+ "url" : " https://github.com/jdneo/vscode-leetcode"
15
+ },
16
+ "homepage" : " https://github.com/jdneo/vscode-leetcode/blob/master/README.md" ,
10
17
"categories" : [
11
- " Other"
18
+ " Other" ,
19
+ " Snippets"
20
+ ],
21
+ "keywords" : [
22
+ " leetcode" ,
23
+ " algorithm" ,
24
+ " interview"
12
25
],
26
+ "preview" : true ,
13
27
"activationEvents" : [
14
28
" onCommand:leetcode.signin" ,
15
29
" onCommand:leetcode.signout" ,
You can’t perform that action at this time.
0 commit comments