-
Notifications
You must be signed in to change notification settings - Fork 933
refactor: port is-ignored ts #675
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Conversation
@@ -0,0 +1 @@ | |||
export * from "./lib"; |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
What's better, double or single quotes? In other files I see that you are using single, I prefer them too but open for double. 😄
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
i vote single
:P
@@ -0,0 +1,152 @@ | |||
import isIgnored from './is-ignored'; | |||
|
|||
const VERSION_MESSAGES = [ |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Love the all caps constants 😄
'0.0.1-some-crazy-tag.999', | ||
'0.0.1-1e69d54', | ||
'v0.0.1', | ||
' v3.0.0' |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Just a check, is the extra space intentional?
#659