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 Feb 21, 2022. It is now read-only.
I'm trying to configure ter-indent to behave as similar to the eslint indent rule I've been using for a while, and for the most part this seems to function alright. However in some cases it doesn't report missing indents - where eslint does.
Specifically, I've identified the problem in the following cases:
// Here I would like to force an indent before ? and before :exportconsttheValue=document.location.search===""
? "empty-search"
: "not-empty-search";// here I'd like to force an indent before .exportconstzero=["one"].map((hi)=>hi.toUpperCase());