Skip to content

Commit

Permalink
Remove unused import/export
Browse files Browse the repository at this point in the history
  • Loading branch information
dvcrn committed Dec 25, 2024
1 parent 9badf34 commit 34c345b
Show file tree
Hide file tree
Showing 2 changed files with 1 addition and 4 deletions.
3 changes: 0 additions & 3 deletions main.test.ts
Original file line number Diff line number Diff line change
@@ -1,9 +1,6 @@
import FilenameHeadingSyncPlugin from './main';
import { App, PluginManifest } from 'obsidian';

// Import HeadingStyle enum from main.ts
import { HeadingStyle } from './main';

describe('FilenameHeadingSyncPlugin', () => {
let plugin: FilenameHeadingSyncPlugin;
let app: App;
Expand Down
2 changes: 1 addition & 1 deletion main.ts
Original file line number Diff line number Diff line change
Expand Up @@ -14,7 +14,7 @@ import { isExcluded } from './exclusions';
const stockIllegalSymbols = /[\\/:|#^[\]]/g;

// Must be Strings unless settings dialog is updated.
export const enum HeadingStyle {
const enum HeadingStyle {
Prefix = 'Prefix',
Underline = 'Underline',
}
Expand Down

0 comments on commit 34c345b

Please sign in to comment.