Skip to content

Commit

Permalink
Fix case of Labels module imports
Browse files Browse the repository at this point in the history
  • Loading branch information
tahabasri committed Sep 13, 2023
1 parent efb2feb commit ae6253c
Show file tree
Hide file tree
Showing 5 changed files with 4 additions and 5 deletions.
2 changes: 1 addition & 1 deletion src/config/commands.ts
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@ import { Snippet } from '../interface/snippet';
import { SnippetsProvider } from '../provider/snippetsProvider';
import { UIUtility } from "../utility/uiUtility";
import { EditSnippet } from '../views/editSnippet';
import { Labels } from "./Labels";
import { Labels } from "./labels";
import { StringUtility } from '../utility/stringUtility';


Expand Down
2 changes: 1 addition & 1 deletion src/extension.ts
Original file line number Diff line number Diff line change
Expand Up @@ -10,7 +10,7 @@ import { NewRelease } from './views/newRelease';
import { SnippetService } from './service/snippetService';
import { UIUtility } from './utility/uiUtility';
import { StringUtility } from './utility/stringUtility';
import { Labels } from './config/Labels';
import { Labels } from './config/labels';
import { FileDataAccess } from './data/fileDataAccess';

/**
Expand Down
2 changes: 1 addition & 1 deletion src/provider/snippetsProvider.ts
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@ import * as path from 'path';
import { Snippet } from '../interface/snippet';
import { CommandsConsts } from '../config/commands';
import { SnippetService } from '../service/snippetService';
import { Labels } from '../config/Labels';
import { Labels } from '../config/labels';

export class SnippetsProvider implements vscode.TreeDataProvider<Snippet>, vscode.TreeDragAndDropController<Snippet> {
constructor(private _snippetService: SnippetService, private _languagesConfig: any[]) { }
Expand Down
2 changes: 1 addition & 1 deletion src/utility/uiUtility.ts
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
import * as vscode from 'vscode';
import { Labels } from '../config/Labels';
import { Labels } from '../config/labels';
import { Snippet } from '../interface/snippet';

export class UIUtility {
Expand Down
1 change: 0 additions & 1 deletion tsconfig.json
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,6 @@
],
"sourceMap": true,
"rootDir": "src",
"forceConsistentCasingInFileNames": false,
"strict": true /* enable all strict type-checking options */
/* Additional Checks */
// "noImplicitReturns": true, /* Report error when not all code paths in function return a value. */
Expand Down

0 comments on commit ae6253c

Please sign in to comment.