This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
yarn add -D \ | |
typescript \ | |
jest \ | |
ts-jest \ | |
@types/jest |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
{ | |
"env": { | |
"node": true, | |
"es2021": true | |
}, | |
"plugins": ["@typescript-eslint"], | |
"parser": "@typescript-eslint/parser", | |
"parserOptions": { | |
"sourceType": "module" | |
}, |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
" ヒストリーに保存しないコマンド | |
let s:histignore = [ | |
\ 'history', | |
\ 'h\%[elp]', | |
\ 'qa\?!\?', | |
\ 'wq\?a\?!\?' | |
\ ] | |
function! s:delIgnoreHistory() abort | |
let l:history = histget(':', -1) | |
for l:ignore in s:histignore |
NewerOlder