Skip to content

Commit

Permalink
Add support for new file types
Browse files Browse the repository at this point in the history
  • Loading branch information
zaynali53 committed May 17, 2017
1 parent 297f37f commit 511c22f
Show file tree
Hide file tree
Showing 2 changed files with 22 additions and 4 deletions.
14 changes: 13 additions & 1 deletion DotENV.YAML-tmLanguage
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,19 @@
---
name: DotENV
scopeName: source.env
fileTypes: [ '.env', '.env.example', '.env.local', '.env.production', '.env.testing' ]
fileTypes: [
".env",
".env.development",
".env.test",
".env.production",
".env.local",
".env.development.local",
".env.test.local",
".env.production.local",
".env.example",
".envrc",
".env.dusk.local"
]
uuid: 09d4e117-0975-453d-a74b-c2e525473f97

patterns:
Expand Down
12 changes: 9 additions & 3 deletions DotENV.tmLanguage
Original file line number Diff line number Diff line change
Expand Up @@ -5,10 +5,16 @@
<key>fileTypes</key>
<array>
<string>.env</string>
<string>.env.example</string>
<string>.env.local</string>
<string>.env.development</string>
<string>.env.test</string>
<string>.env.production</string>
<string>.env.testing</string>
<string>.env.local</string>
<string>.env.development.local</string>
<string>.env.test.local</string>
<string>.env.production.local</string>
<string>.env.example</string>
<string>.envrc</string>
<string>.env.dusk.local</string>
</array>
<key>name</key>
<string>DotENV</string>
Expand Down

0 comments on commit 511c22f

Please sign in to comment.