Skip to content

Commit 89bdeb7

Browse files
authored
regenerate
1 parent 3ce7f60 commit 89bdeb7

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

54 files changed

+16881
-16704
lines changed

dist/index.js

Lines changed: 13599 additions & 13463 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

dist/index.js.map

Lines changed: 1 addition & 1 deletion
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

dist/sourcemap-register.js

Lines changed: 2845 additions & 2847 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

package.json

Lines changed: 3 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -11,9 +11,10 @@
1111
"format": "prettier --write **/*.ts",
1212
"format-check": "prettier --check **/*.ts",
1313
"lint": "eslint src/**/*.ts",
14+
"lint-fix": "eslint src/**/*.ts --fix",
1415
"package": "ncc build --source-map --license licenses.txt",
1516
"test": "jest",
16-
"all": "yarn run build && yarn run format && yarn run lint && yarn run package && yarn test",
17+
"all": "yarn run build && yarn run format && yarn run package && yarn test",
1718
"generate-json-schema": "node ./scripts/generate-json-schema.js"
1819
},
1920
"repository": {
@@ -44,6 +45,7 @@
4445
"eslint": "^7.8.1",
4546
"eslint-plugin-github": "^4.1.1",
4647
"eslint-plugin-jest": "^24.1.0",
48+
"eslint-plugin-prettier": "^3.3.0",
4749
"jest": "^24.9.0",
4850
"jest-circus": "^26.6.3",
4951
"js-yaml": "^3.14.0",

src/config.ts

Lines changed: 3 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -17,10 +17,11 @@ const getWorkspacePath = (configFilePath: string) => {
1717
console.log(`join the workspace path`);
1818

1919
return path.join(rootPath, configFilePath);
20-
}
20+
};
2121

2222
export const getConfigs = (configFilePath: string): IConfig[] => {
23-
const configPath = getWorkspacePath(configFilePath) ?? path.join(PROJECT_ROOT, configFilePath);
23+
const configPath =
24+
getWorkspacePath(configFilePath) ?? path.join(PROJECT_ROOT, configFilePath);
2425

2526
console.log(`config path: "${configPath}"`);
2627

src/errors/AuthorizationError.ts

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,2 +1 @@
1-
21
export class AuthorizationError extends Error {}

src/interfaces/ICardWithIssue.ts

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -3,8 +3,8 @@ import { TColumnTypes } from './TColumnTypes';
33
import { TRepoIssue } from './TRepoIssue';
44

55
export interface ICardWithIssue {
6-
column: TColumnTypes;
7-
issue?: TRepoIssue;
8-
card: TColumnCard;
9-
isNew: boolean;
10-
}
6+
column: TColumnTypes;
7+
issue?: TRepoIssue;
8+
card: TColumnCard;
9+
isNew: boolean;
10+
}

src/interfaces/IConfig.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -59,5 +59,5 @@ export interface IConfig {
5959
/**
6060
* Used by `vscode` in JSON files.
6161
*/
62-
['$schema']?: string,
62+
['$schema']?: string;
6363
}

src/interfaces/IIssueState.ts

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
11
export enum IIssueState {
2-
Open = 'open',
3-
Closed = 'closed',
2+
Open = 'open',
3+
Closed = 'closed',
44
}

src/interfaces/IParsedFileUrl.ts

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
export interface IParsedFileUrl {
2-
owner: string;
3-
repo: string;
4-
path: string;
5-
}
2+
owner: string;
3+
repo: string;
4+
path: string;
5+
}

0 commit comments

Comments
 (0)