Skip to content

Instantly share code, notes, and snippets.

View shun-shobon's full-sized avatar
🙇‍♂️
I'm sorry I'm not good at English.

NISHIZAWA Shuntaro shun-shobon

🙇‍♂️
I'm sorry I'm not good at English.
View GitHub Profile
@shun-shobon
shun-shobon / install.sh
Last active May 17, 2020 02:58
TypeScript + Jest環境構築例
yarn add -D \
typescript \
jest \
ts-jest \
@types/jest
@shun-shobon
shun-shobon / .eslintrc
Last active November 22, 2020 14:43
TypeScript + ESLint + Prettier環境構築例
{
"env": {
"node": true,
"es2021": true
},
"plugins": ["@typescript-eslint"],
"parser": "@typescript-eslint/parser",
"parserOptions": {
"sourceType": "module"
},
@shun-shobon
shun-shobon / del_ignore_history.vim
Last active December 30, 2019 14:11
パターンにマッチするコマンドを保存しない
" ヒストリーに保存しないコマンド
let s:histignore = [
\ 'history',
\ 'h\%[elp]',
\ 'qa\?!\?',
\ 'wq\?a\?!\?'
\ ]
function! s:delIgnoreHistory() abort
let l:history = histget(':', -1)
for l:ignore in s:histignore