-
Notifications
You must be signed in to change notification settings - Fork 74
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge pull request #610 from nexB/feature/license-review-status
Todo flags, Checkbox & Filter for reviewing licenses, Auto-scroll to focus bug fixes
- Loading branch information
Showing
102 changed files
with
4,272 additions
and
2,086 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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,10 +1,14 @@ | ||
### Description | ||
|
||
Please leave a brief discription of the bug or feature request: | ||
* if reporting a bug, tell us how to reproduce the issue. | ||
* Check the Develop Console tab and copy any error text there might be: https://scancode-workbench.readthedocs.io/en/latest/basics/check_for_errors_in_the_developer_tools.html | ||
|
||
- if reporting a bug, tell us how to reproduce the issue. | ||
- Check the Develop Console tab and copy any error text there might be: https://scancode-workbench.readthedocs.io/en/latest/basics/check_for_errors_in_the_developer_tools.html | ||
|
||
### System configuration | ||
|
||
For bug reports, it really helps us to know: | ||
* What OS are you running on? (Windows/MacOS/Linux) | ||
* What version of scancode-workbench are you running on? | ||
* What version of scancode-toolkit was used to generate the scan file? | ||
|
||
- What OS are you running on? (Windows/MacOS/Linux) | ||
- What version of scancode-workbench are you running on? | ||
- What version of scancode-toolkit was used to generate the scan file? |
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
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 |
---|---|---|
|
@@ -41,4 +41,4 @@ Thumbs.db | |
|
||
# Editor backup files # | ||
####################### | ||
*~ | ||
*~ |
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,7 +1,7 @@ | ||
/** @type {import('ts-jest').JestConfigWithTsJest} */ | ||
module.exports = { | ||
preset: 'ts-jest', | ||
testEnvironment: 'node', | ||
preset: "ts-jest", | ||
testEnvironment: "node", | ||
modulePathIgnorePatterns: ["test-old", "dist"], | ||
testPathIgnorePatterns: ["node_modules", "dist", "test-old"] | ||
}; | ||
testPathIgnorePatterns: ["node_modules", "dist", "test-old"], | ||
}; |
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,21 +1,36 @@ | ||
/* eslint-disable @typescript-eslint/no-var-requires */ | ||
const packager = require('electron-packager'); | ||
const packager = require("electron-packager"); | ||
|
||
const ignoreDir = [ | ||
'src', 'dist', 'samples', 'test-old', | ||
'.github', 'docs', 'test-db', | ||
'' // Required as the last element !! | ||
].join('*|'); | ||
"src", | ||
"dist", | ||
"samples", | ||
"test-old", | ||
".github", | ||
"docs", | ||
"test-db", | ||
"", // Required as the last element !! | ||
].join("*|"); | ||
const ignoreFilesOrExtensions = [ | ||
'rst', 'py', 'md', 'txt', 'enc', '.test.ts', | ||
'ABOUT', 'LICENSE', 'NOTICE', | ||
'.gitignore', '.eslintrc.json', | ||
'package-lock.json', 'electron-builder.json', 'tsconfig.json', | ||
].join('|'); | ||
"rst", | ||
"py", | ||
"md", | ||
"txt", | ||
"enc", | ||
".test.ts", | ||
"ABOUT", | ||
"LICENSE", | ||
"NOTICE", | ||
".gitignore", | ||
".eslintrc.json", | ||
"package-lock.json", | ||
"electron-builder.json", | ||
"tsconfig.json", | ||
].join("|"); | ||
|
||
packager({ | ||
dir: ".", | ||
out: 'out', // @NOTE - If 'out' dir is changed here, change PACKAGE_DIR in archive_builder too, | ||
out: "out", // @NOTE - If 'out' dir is changed here, change PACKAGE_DIR in archive_builder too, | ||
overwrite: true, | ||
icon: "src/assets/app-icon/icon", | ||
prune: true, | ||
|
@@ -33,4 +48,4 @@ packager({ | |
// appleId: '[email protected]', | ||
// appleIdPassword: 'my-apple-id-password' | ||
// }, | ||
}); | ||
}); |
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 +1 @@ | ||
*.sqlite | ||
*.sqlite |
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
Oops, something went wrong.