-
Notifications
You must be signed in to change notification settings - Fork 14
Update JavaScript tools #30
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
{ | ||
"printWidth": 120, | ||
"singleQuote": true, | ||
"useTabs": true |
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.
Do we normally use tabs with TypeScript? I have no objection to switching to spaces.
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.
Yes, tabs are the normal Faithlife style.
@@ -17,7 +17,7 @@ export interface IServiceError { | |||
/** The error message. (For developers, not end users.) */ | |||
message?: string; | |||
/** Advanced error details. */ | |||
details?: any; | |||
details?: Record<string, unknown>; |
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.
This could be a breaking change. I changed it because eslint's default rules complain about any
. The alternative is to ignore that rule, either on this line or project-wide.
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 have no objection to this change.
🎉 |
No description provided.