Skip to content

Commit

Permalink
Appease linter gods
Browse files Browse the repository at this point in the history
  • Loading branch information
m3nowak committed Oct 20, 2024
1 parent 4368c8e commit c4ff84a
Show file tree
Hide file tree
Showing 3 changed files with 5 additions and 1 deletion.
1 change: 1 addition & 0 deletions .prettierignore
Original file line number Diff line number Diff line change
@@ -0,0 +1 @@
src/app/api
3 changes: 3 additions & 0 deletions eslint.config.js
Original file line number Diff line number Diff line change
Expand Up @@ -13,6 +13,9 @@ module.exports = tseslint.config(
...tseslint.configs.stylistic,
...angular.configs.tsRecommended,
],
ignores: [
"src/app/api/**/*"
],
processor: angular.processInlineTemplates,
rules: {
"@angular-eslint/directive-selector": [
Expand Down
2 changes: 1 addition & 1 deletion src/app/services/strava-auth.service.ts
Original file line number Diff line number Diff line change
Expand Up @@ -83,7 +83,7 @@ export class StravaAuthService {
this.loggerSvc.info('Token expires at:', this.loginExpiresAt());
this.loggerSvc.info('Token expired:', this.isExpired());
this.loggerSvc.info('Token scopes:', this.scopes());
this.loggerSvc.info("UTC now:", DateTime.utc());
this.loggerSvc.info('UTC now:', DateTime.utc());
}

feedToken(params: Params) {
Expand Down

0 comments on commit c4ff84a

Please sign in to comment.