"chore: update frontend dev script to include lint checks and add ESLint config file"

This commit is contained in:
louiscklaw
2025-06-04 02:35:32 +08:00
parent c0fad42f0a
commit 22fb620eef
48 changed files with 3315 additions and 97 deletions

View File

@@ -1,17 +1,25 @@
const paths = {
NOT_IMPLEMENTED: '/not_implemented',
TAB_NOT_IMPLEMENTED: '/tabs/not_implemented',
//
SETTINGS: '/settings',
//
EVENT_LIST: `/tabs/events`,
MESSAGE_LIST: `/tabs/messages`,
NEARBY_LIST: '/tabs/nearby',
//
ORDERS_LIST: '/tabs/orders',
FAVOURITES_LIST: `/tabs/favourites`,
//
ORDER_DETAIL: '/order_detail/:id',
getOrderDetail: (id: string) => `/order_detail/${id}`,
//
FAVOURITES_LIST: `/tabs/favourites`,
CHANGE_LANGUAGE: '/change_language',
SERVICE_AGREEMENT: '/service_agreement',
PRIVACY_AGREEMENT: '/privacy_agreement',
//
login: '/login',
PROFILE: '/tabs/my_profile',
//
SIGN_IN: '/mylogin',
};
export default paths;