lincwell / frontend-coding-guideline

Linc'well Frontend Coding Rules
1 stars 0 forks source link

typeの定義はconstの定義と分けて上の方に定義する #21

Open mpayu2 opened 1 year ago

mpayu2 commented 1 year ago

内容

typeの定義はconstの定義と分けて上の方に定義すると可読性が上がりそうです。 現状、ほとんどの箇所はすでにそうなっていそうです。

未適用

const NORMAL_CODE = 'NORMAL'
const ERROR_CODE = 'ERROR'
type StateType = { isGet: boolean; errorCode: typeof Errors[number] | undefined; executeAtSuccess?: () => void }

export const useCustomHook = () => {

適用

type StateType = { isGet: boolean; errorCode: typeof Errors[number] | undefined; executeAtSuccess?: () => void }

const NORMAL_CODE = 'NORMAL'
const ERROR_CODE = 'ERROR'

export const useCustomHook = () => {