You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
{{ message }}
This repository was archived by the owner on Jan 19, 2019. It is now read-only.
What version of typescript-eslint-parser are you using?
20.1.0
What code were you trying to parse?
import{action,observable,useStrict,runInAction,IObservableArray,}from'mobx';importorderReadServicefrom'@client/model/purchase/orderReadService';import{BizPurchaseOrderTO,PageTO,BizQueryOrderConditionTO,}from'@client/types/thrift/purchase';import{PURCHASE_ORDER_TYPE_ENUM}from'@constants/order';useStrict(true);exportdefaultclassListModalStore{// order list
@observableorderList: IObservableArray<BizPurchaseOrderTO>=observable([]);
@observableorderListPageInfo: PageTO={currentPage: 1,perPage: 10,total: '5'};}
What did you expect to happen?
no eslint error for the 'observable' which is imported from mobx.
What happened?
[eslint] 'observable' is defined but never used.
This is happened for the 'observable' which is imported from mobx.