diff options
author | Vendicated <vendicated@riseup.net> | 2022-09-16 22:59:34 +0200 |
---|---|---|
committer | Vendicated <vendicated@riseup.net> | 2022-09-16 22:59:34 +0200 |
commit | 71a60a0359eda13221f2314c0b1c33c86f240fd3 (patch) | |
tree | cbf6048c91034ac77ac61494cf0975fd0d229e0e /src/webpack | |
parent | 5f62d2d3ec2cfbb39b0663e96b82746384ef1b89 (diff) | |
download | Vencord-71a60a0359eda13221f2314c0b1c33c86f240fd3.tar.gz Vencord-71a60a0359eda13221f2314c0b1c33c86f240fd3.tar.bz2 Vencord-71a60a0359eda13221f2314c0b1c33c86f240fd3.zip |
Add .editorconfig; reformat project
Diffstat (limited to 'src/webpack')
-rw-r--r-- | src/webpack/common.ts | 2 | ||||
-rw-r--r-- | src/webpack/index.ts | 2 | ||||
-rw-r--r-- | src/webpack/webpack.ts | 4 |
3 files changed, 4 insertions, 4 deletions
diff --git a/src/webpack/common.ts b/src/webpack/common.ts index e45d2ca..525a678 100644 --- a/src/webpack/common.ts +++ b/src/webpack/common.ts @@ -33,4 +33,4 @@ waitFor(["ButtonLooks", "default"], m => { waitFor(filters.byDisplayName("SwitchItem"), m => Switch = m.default); waitFor(filters.byDisplayName("Flex"), m => Flex = m.default); waitFor(filters.byDisplayName("Card"), m => Card = m.default); -waitFor(filters.byDisplayName("Tooltip"), m => Tooltip = m.default);
\ No newline at end of file +waitFor(filters.byDisplayName("Tooltip"), m => Tooltip = m.default); diff --git a/src/webpack/index.ts b/src/webpack/index.ts index a388dbd..6f4ea12 100644 --- a/src/webpack/index.ts +++ b/src/webpack/index.ts @@ -1,2 +1,2 @@ export * from "./webpack"; -export * as Common from "./common";
\ No newline at end of file +export * as Common from "./common"; diff --git a/src/webpack/webpack.ts b/src/webpack/webpack.ts index 73ea1a3..27306de 100644 --- a/src/webpack/webpack.ts +++ b/src/webpack/webpack.ts @@ -112,7 +112,7 @@ export function search(...filters: Array<string | RegExp>) { * Extract a specific module by id into its own Source File. This has no effect on * the code, it is only useful to be able to look at a specific module without having * to view a massive file. extract then returns the extracted module so you can jump to it. - * As mentioned above, note that this extracted module is not actually used, + * As mentioned above, note that this extracted module is not actually used, * so putting breakpoints or similar will have no effect. * @param id The id of the module to extract */ @@ -130,4 +130,4 @@ ${mod.toString()} `; const extracted = (0, eval)(code); return extracted as Function; -}
\ No newline at end of file +} |