From 6798d64a19f0e07dd5f6475c8cd0aa9b2cffc146 Mon Sep 17 00:00:00 2001 From: Alan Agius Date: Mon, 23 Jul 2018 17:27:25 +0200 Subject: [PATCH] fix: add missing syntax type (#27471) --- types/stylelint/index.d.ts | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/types/stylelint/index.d.ts b/types/stylelint/index.d.ts index 1606d1805c..67316843a9 100644 --- a/types/stylelint/index.d.ts +++ b/types/stylelint/index.d.ts @@ -5,7 +5,7 @@ export type FormatterType = "json" | "string" | "verbose"; -export type SyntaxType = "scss" | "less" | "sugarss"; +export type SyntaxType = "scss" | "sass" | "less" | "sugarss"; export interface LinterOptions { code?: string;