-
Notifications
You must be signed in to change notification settings - Fork 2
Expand file tree
/
Copy pathdot-env.tmLanguage
More file actions
47 lines (47 loc) · 1.15 KB
/
dot-env.tmLanguage
File metadata and controls
47 lines (47 loc) · 1.15 KB
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
<?xml version="1.0" encoding="UTF-8"?>
<!DOCTYPE plist PUBLIC "-//Apple//DTD PLIST 1.0//EN" "http://www.apple.com/DTDs/PropertyList-1.0.dtd">
<plist version="1.0">
<dict>
<key>fileTypes</key>
<array>
<string>.env</string>
<string>.env.example</string>
<string>.env.staging</string>
<string>.env.production</string>
<string>.env.development</string>
</array>
<key>name</key>
<string>Dot Env</string>
<key>patterns</key>
<array>
<dict>
<key>comment</key>
<string>Uppercase text e.g. hello</string>
<key>match</key>
<string>([A-Z0-9_]*)(?==)</string>
<key>name</key>
<string>constant</string>
</dict>
<dict>
<key>comment</key>
<string>Lowercase text e.g. world</string>
<key>match</key>
<string>(?<==)[\w\D+.-:]+</string>
<key>name</key>
<string>entity.other.attribute-name</string>
</dict>
<dict>
<key>comment</key>
<string>comments</string>
<key>match</key>
<string>#[a-zA-Z0-9\s]*</string>
<key>name</key>
<string>comment</string>
</dict>
</array>
<key>scopeName</key>
<string>text.env</string>
<key>uuid</key>
<string>b18e38c7-9730-4b27-aecb-8e49ff77a459</string>
</dict>
</plist>