- WSL及びsshしているときのclipboard共有が課題
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
module.exports = { | |
env: { | |
browser: true, | |
commonjs: true, | |
es2021: true | |
}, | |
extends: [ | |
'standard' | |
], | |
parser: '@typescript-eslint/parser', |
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
module.exports = { | |
'env': { | |
'browser': true, | |
'commonjs': true, | |
'es2021': true, | |
}, | |
'extends': [ | |
'google', | |
], | |
'parser': '@typescript-eslint/parser', |
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
module.exports = { | |
env: { | |
browser: true, | |
commonjs: true, | |
es2021: true, | |
}, | |
extends: [ | |
'airbnb-base', | |
], | |
parser: '@typescript-eslint/parser', |
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
SKIP_PREFLIGHT_CHECK=true | |
ESLINT_NO_DEV_ERRORS=true | |
EXTEND_ESLINT=true |
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
SKIP_PREFLIGHT_CHECK=true | |
ESLINT_NO_DEV_ERRORS=true | |
EXTEND_ESLINT=true |
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
/** | |
* base64エンコードされたバイナリデータからUint8Arrayを取得 | |
* @param base64str base64エンコード文字列 | |
* @return Uint8Array | |
*/ | |
export const getUint8ArrayFromBase64 = (base64str) => { | |
const binary = atob(base64str); | |
const bytes = [...Array(binary.length).keys()].map( | |
(idx) => binary.charCodeAt(idx) | |
); |
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
/** | |
* validation | |
*/ | |
/** | |
* validate uuid | |
* @param {string} value - target for validate | |
* @return {boolean} | |
*/ | |
export const validateUuid = (value) => { |