File tree 5 files changed +1023
-744
lines changed
5 files changed +1023
-744
lines changed Original file line number Diff line number Diff line change @@ -66,8 +66,6 @@ Qiitaの[アプリケーションページ](https://qiita.com/settings/applicati
66
66
` string ` : Qiita APIのアクセストークンを設定します。
67
67
### ` qiita.tweetOnCreateItem `
68
68
` boolean ` : 投稿を公開した際にTwitterで共有するかどうかを指定できます。(Twitter連携ログイン済みの場合のみ)
69
- ### ` qiita.gistOnCreateItem `
70
- ` boolean ` : 投稿を公開した際にGitHub Gistで共有するかどうかを指定できます。(GitHub連携ログイン済みの場合のみ)
71
69
72
70
## 開発
73
71
```
Original file line number Diff line number Diff line change 22
22
"dependencies" : {
23
23
"@types/chai" : " ^4.1.7" ,
24
24
"@types/mocha" : " ^5.2.5" ,
25
- "@types/node" : " ^10 .12.10 " ,
25
+ "@types/node" : " ^11 .12.0 " ,
26
26
"chai" : " ^4.2.0" ,
27
- "core-js" : " ^2.5.7 " ,
28
- "mocha" : " ^5.2.0 " ,
27
+ "core-js" : " ^3.0.0 " ,
28
+ "mocha" : " ^6.0.2 " ,
29
29
"npm-run-all" : " ^4.1.5" ,
30
30
"qiita-js-2" : " ^1.3.1" ,
31
31
"tslint" : " ^5.8.0" ,
100
100
"type" : " boolean" ,
101
101
"default" : false ,
102
102
"description" : " %configuration.tweetOnCreateItem.description%"
103
- },
104
- "qiita.gistOnCreateItem" : {
105
- "type" : " boolean" ,
106
- "default" : false ,
107
- "description" : " %configuration.gistOnCreateItem.description%"
108
103
}
109
104
}
110
105
}
Original file line number Diff line number Diff line change 57
57
58
58
"configuration.token.description" : " Qiitaのアクセストークン" ,
59
59
"configuration.tweetOnCreateItem.description" : " 投稿を公開した際にTwitterで共有するかどうか" ,
60
- "configuration.gistOnCreateItem.description" : " 投稿を公開した際にGitHub Gistで共有するかどうか" ,
61
60
62
61
"views.qiitaItem" : " Qiitaの投稿"
63
62
}
Original file line number Diff line number Diff line change @@ -22,7 +22,6 @@ export async function compose (resource?: Uri) {
22
22
tags : [ ] ,
23
23
private : false ,
24
24
tweet : workspace . getConfiguration ( 'qiita' ) . get ( 'tweetOnCreateItem' ) ,
25
- gist : workspace . getConfiguration ( 'qiita' ) . get ( 'gistOnCreateItem' ) ,
26
25
} ;
27
26
28
27
// 保存済みファイルの場合
You can’t perform that action at this time.
0 commit comments