-
Notifications
You must be signed in to change notification settings - Fork 3
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
1 parent
dec3f4a
commit c18f9ea
Showing
4 changed files
with
18 additions
and
14 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,10 +1,8 @@ | ||
import { CHECK_NAME } from "src/app.config"; | ||
import { PolicyCheck } from "./policy-check"; | ||
import { CHECK_NAME } from '../app.config'; | ||
import { PolicyCheck } from './policy-check'; | ||
|
||
export class LicensePolicyCheck extends PolicyCheck { | ||
|
||
constructor() { | ||
super(`${CHECK_NAME}: Licenses Policy`); | ||
} | ||
|
||
} | ||
constructor() { | ||
super(`${CHECK_NAME}: Licenses Policy`); | ||
} | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,4 @@ | ||
|
||
Check failure on line 1 in src/services/report.service.ts GitHub Actions / Lint Codebase
|
||
export function getLicensesReport(licenses: any): string { | ||
Check failure on line 2 in src/services/report.service.ts GitHub Actions / Lint Codebase
Check warning on line 2 in src/services/report.service.ts GitHub Actions / Lint Codebase
Check failure on line 2 in src/services/report.service.ts GitHub Actions / TypeScript Tests
|
||
return 'test'; | ||
Check failure on line 3 in src/services/report.service.ts GitHub Actions / Lint Codebase
|
||
} | ||
Check failure on line 4 in src/services/report.service.ts GitHub Actions / Lint Codebase
|