-
-
Notifications
You must be signed in to change notification settings - Fork 2k
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge branch 'develop' into florianduros/rip-out-legacy-crypto/restor…
…ekeybackup
- Loading branch information
Showing
132 changed files
with
2,221 additions
and
1,775 deletions.
There are no files selected for viewing
This file was deleted.
Oops, something went wrong.
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
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 |
---|---|---|
@@ -0,0 +1,53 @@ | ||
import { KnipConfig } from "knip"; | ||
|
||
export default { | ||
entry: [ | ||
"src/vector/index.ts", | ||
"src/serviceworker/index.ts", | ||
"src/workers/*.worker.ts", | ||
"src/utils/exportUtils/exportJS.js", | ||
"scripts/**", | ||
"playwright/**", | ||
"test/**", | ||
"res/decoder-ring/**", | ||
], | ||
project: ["**/*.{js,ts,jsx,tsx}"], | ||
ignore: [ | ||
"docs/**", | ||
"res/jitsi_external_api.min.js", | ||
// Used by jest | ||
"__mocks__/maplibre-gl.js", | ||
// Keep for now | ||
"src/hooks/useLocalStorageState.ts", | ||
"src/components/views/elements/InfoTooltip.tsx", | ||
"src/components/views/elements/StyledCheckbox.tsx", | ||
], | ||
ignoreDependencies: [ | ||
// Required for `action-validator` | ||
"@action-validator/*", | ||
// Used for git pre-commit hooks | ||
"husky", | ||
// Used by jest | ||
"babel-jest", | ||
// Used by babel | ||
"@babel/runtime", | ||
"@babel/plugin-transform-class-properties", | ||
// Referenced in PCSS | ||
"github-markdown-css", | ||
// False positive | ||
"sw.js", | ||
// Used by webpack | ||
"buffer", | ||
"process", | ||
"util", | ||
// Used by workflows | ||
"ts-prune", | ||
// Required due to bug in bloom-filters https://github.com/Callidon/bloom-filters/issues/75 | ||
"@types/seedrandom", | ||
], | ||
ignoreBinaries: [ | ||
// Used in scripts & workflows | ||
"jq", | ||
], | ||
ignoreExportsUsedInFile: true, | ||
} satisfies KnipConfig; |
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.