Created
April 29, 2018 16:37
-
-
Save j-cam/fad6066f6e6105f51abe36f847bb4a57 to your computer and use it in GitHub Desktop.
VS Code User Snippets SCSS: add @ directives.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
{ | |
"@import directive": { | |
"prefix": "@import", | |
"body": [ | |
"@import " | |
], | |
"description": "import scss/sass partial" | |
}, | |
"@include directive": { | |
"prefix": "@include", | |
"body": [ | |
"@include " | |
], | |
"description": "include scss/sass mixin" | |
}, | |
"@function directive": { | |
"prefix": "@function", | |
"body": [ | |
"@function " | |
], | |
"description": "declare scss/sass function" | |
}, | |
"@mixin directive": { | |
"prefix": "@mixin", | |
"body": [ | |
"@mixin " | |
], | |
"description": "declare scss/sass mixin" | |
} | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment