Skip to content

Commit

Permalink
Rename folder to fix case sensitivity problems
Browse files Browse the repository at this point in the history
  • Loading branch information
Robbie Ostermann committed Sep 8, 2022
1 parent f1af606 commit 126874c
Show file tree
Hide file tree
Showing 9 changed files with 8 additions and 8 deletions.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
2 changes: 1 addition & 1 deletion src/features/linter.ts
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@
import * as vscode from "vscode";
import { Diagnostic, DiagnosticSeverity, Disposable, Range } from "vscode";

import { normalize } from "./helpers/utilities";
import { normalize } from "./helper/utilities";
import { FormattingProvider } from "./providers/format";
import { Linter, LintingProvider } from "./providers/lint";

Expand Down
6 changes: 3 additions & 3 deletions src/features/providers/format.ts
Original file line number Diff line number Diff line change
Expand Up @@ -3,9 +3,9 @@
import * as fs from "fs";
import * as vscode from "vscode";

import { Configuration } from "../helpers/configuration";
import { SQLFluff, SQLFluffCommand } from "../helpers/sqlfluff";
import { normalize, Utilities } from "../helpers/utilities";
import { Configuration } from "../helper/configuration";
import { SQLFluff, SQLFluffCommand } from "../helper/sqlfluff";
import { normalize, Utilities } from "../helper/utilities";

export class FormattingProvider {
async provideDocumentFormattingEdits(
Expand Down
8 changes: 4 additions & 4 deletions src/features/providers/lint.ts
Original file line number Diff line number Diff line change
@@ -1,10 +1,10 @@
"use strict";
import * as vscode from "vscode";

import { ThrottledDelayer } from "../helpers/async";
import { Configuration } from "../helpers/configuration";
import { SQLFluff, SQLFluffCommand, SQLFluffCommandOptions } from "../helpers/sqlfluff";
import { normalize, Utilities } from "../helpers/utilities";
import { ThrottledDelayer } from "../helper/async";
import { Configuration } from "../helper/configuration";
import { SQLFluff, SQLFluffCommand, SQLFluffCommandOptions } from "../helper/sqlfluff";
import { normalize, Utilities } from "../helper/utilities";

enum RunTrigger {
onSave = "onSave",
Expand Down

0 comments on commit 126874c

Please sign in to comment.