喋る順番は自由でOK
案件・カルチャー問わず
最近気になっていること ポジティブなこと、ネガティブなこと問わずなんでも
VSCode の golang 設定
gopls というLanguage Serverで補完をかけれるみたい。
vscode/setting.json
{
"go.useLanguageServer": true,
| firebase-tools | |
| serverless |
| const DateUtil = { | |
| thisYear: () => { | |
| return new Date().getFullYear().toString(); | |
| }, | |
| thisMonth: () => { | |
| const month = new Date().getMonth() + 1; | |
| if (month < 10) { | |
| return "0" + month.toString(); | |
| } else { | |
| return month.toString(); |
| import './style/style.scss'; |