1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
|
import type { EditorState } from './state'
export const htmlLanguages = [
'aspnetcorerazor',
'astro',
'astro-markdown',
'blade',
'django-html',
'edge',
'ejs',
'erb',
'gohtml',
'GoHTML',
'gohtmltmpl',
'haml',
'handlebars',
'hbs',
'html',
'HTML (Eex)',
'HTML (EEx)',
'html-eex',
'htmldjango',
'jade',
'leaf',
'liquid',
'markdown',
'mdx',
'mustache',
'njk',
'nunjucks',
'phoenix-heex',
'php',
'razor',
'slim',
'surface',
'twig',
]
export const cssLanguages = [
'css',
'less',
'postcss',
'sass',
'scss',
'stylus',
'sugarss',
'tailwindcss',
]
export const jsLanguages = [
'javascript',
'javascriptreact',
'reason',
'rescript',
'typescript',
'typescriptreact',
]
export const specialLanguages = ['vue', 'svelte']
export const languages = [...cssLanguages, ...htmlLanguages, ...jsLanguages, ...specialLanguages]
const semicolonlessLanguages = ['sass', 'sugarss', 'stylus']
export function isSemicolonlessCssLanguage(
languageId: string,
userLanguages: EditorState['userLanguages'] = {}
) {
return (
semicolonlessLanguages.includes(languageId) ||
semicolonlessLanguages.includes(userLanguages[languageId])
)
}
|