Skip to content

Commit

Permalink
v2.3.8
Browse files Browse the repository at this point in the history
  • Loading branch information
RobertOstermann committed Jul 16, 2023
1 parent 9a9bf36 commit f08231e
Show file tree
Hide file tree
Showing 3 changed files with 5 additions and 3 deletions.
4 changes: 4 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -4,6 +4,10 @@ All notable changes to the "sqlfluff" extension will be documented in this file.

Check [Keep a Changelog](http://keepachangelog.com/) for recommendations on how to structure this file.

## [2.3.8] - 2023-07-16

- Fix - Stop SQLFluff output channel from showing twice

## [2.3.7] - 2023-07-15

- Update the `sqlfluff.dialect` enum
Expand Down
2 changes: 1 addition & 1 deletion package.json
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
{
"name": "vscode-sqlfluff",
"displayName": "sqlfluff",
"version": "2.3.7",
"version": "2.3.8",
"description": "A linter and auto-formatter for SQLfluff, a popular linting tool for SQL and dbt.",
"publisher": "dorzey",
"icon": "images/icon.png",
Expand Down
2 changes: 0 additions & 2 deletions src/features/providers/formatter/helper.ts
Original file line number Diff line number Diff line change
Expand Up @@ -3,8 +3,6 @@ import * as vscode from "vscode";
import Configuration from "../../helper/configuration";

export default class FormatHelper {
static outputChannel = vscode.window.createOutputChannel("SQLFluff");

public static parseLines(lines: string[]): string[] | undefined {
if (lines[0].startsWith("NO SAFETY:")) {
lines.shift();
Expand Down

0 comments on commit f08231e

Please sign in to comment.