1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
|
import { TextDocument } from 'vscode-languageserver'
export const CSS_LANGUAGES = [
'css',
'less',
'postcss',
'sass',
'scss',
'stylus',
'svelte',
'vue'
]
export function isCssDoc(doc: TextDocument): boolean {
return CSS_LANGUAGES.indexOf(doc.languageId) !== -1
}
|