Skip to content

Commit

Permalink
chore: tabs to spaces
Browse files Browse the repository at this point in the history
  • Loading branch information
Ephigenia committed Dec 26, 2021
1 parent 5a47bef commit 2a212aa
Show file tree
Hide file tree
Showing 3 changed files with 8 additions and 5 deletions.
3 changes: 3 additions & 0 deletions .github/workflows/default.yml
Original file line number Diff line number Diff line change
Expand Up @@ -2,6 +2,9 @@ name: default

on: [push]

env:
GITHUB_TOKEN: ${{ secrets.GH_TOKEN }}

jobs:
lint:
name: Lint Code Base
Expand Down
4 changes: 2 additions & 2 deletions source/lib/client.js
Original file line number Diff line number Diff line change
Expand Up @@ -5,13 +5,13 @@ import { BIN_NAME } from './constants.js';
class ApplicationError extends Error {
constructor(message) {
super(message);
this.name = 'ApplicationError';
this.name = 'ApplicationError';
}
}
class ApplicationConfigurationError extends ApplicationError {
constructor(message) {
super(message);
this.name = 'ApplicationConfigurationError';
this.name = 'ApplicationConfigurationError';
}
}
class ApplicationMissingConfigurationError extends ApplicationConfigurationError {
Expand Down
6 changes: 3 additions & 3 deletions source/lib/config.js
Original file line number Diff line number Diff line change
Expand Up @@ -31,9 +31,9 @@ const schema = {
// optional locale to be used when formatting money values
type: 'string',
},
refreshToken: {
type: 'string',
},
refreshToken: {
type: 'string',
},
scopes: {
type: 'array',
default: SCOPES_DEFAULT,
Expand Down

0 comments on commit 2a212aa

Please sign in to comment.