Skip to content

Instantly share code, notes, and snippets.

View rikusen0335's full-sized avatar

Soshi Homma rikusen0335

View GitHub Profile
@rikusen0335
rikusen0335 / test-api.yaml
Created March 27, 2023 06:08
Reproducible OpenAPI go-server bug yaml for PR
openapi: 3.0.0
x-stoplight:
id: zifvr6s124si6
info:
title: test
version: '1.0'
servers:
- url: 'http://localhost:3000'
paths:
'/users/{userId}':
@rikusen0335
rikusen0335 / settings.json
Created September 20, 2021 16:18
VSCode (Java|Type)Script Inlay Hints
{
"javascript.inlayHints.parameterNames.enabled": "all",
"typescript.inlayHints.parameterNames.enabled": "all",
"javascript.inlayHints.variableTypes.enabled": true,
"typescript.inlayHints.variableTypes.enabled": true,
"javascript.inlayHints.parameterTypes.enabled": true,
"typescript.inlayHints.parameterTypes.enabled": true,
"javascript.inlayHints.functionLikeReturnTypes.enabled": true,
"typescript.inlayHints.functionLikeReturnTypes.enabled": true,
}
@rikusen0335
rikusen0335 / settings.json
Last active July 25, 2020 05:52
VSCode Settings
{
"workbench.colorTheme": "Community Material Theme Darker High Contrast",
"editor.wordWrap": "on",
"editor.fontFamily": "'Fira Code', 'Source Han Code JP', Consolas, 'Courier New', monospace",
"editor.fontLigatures": true,
"editor.renderWhitespace": "all",
"editor.tabSize": 2,
"liveServer.settings.donotShowInfoMsg": true,
"workbench.startupEditor": "newUntitledFile",
"guides.active.width": 2,