Created
September 25, 2017 11:10
-
-
Save zexeder/33f170fa7b80789713b771fb361a38f6 to your computer and use it in GitHub Desktop.
Snippet following the css idiomatic documentation for VSCODE IDE
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
/* | |
* Snippet seguindo a documentação idiomatic css, | |
* basta colocar nas seus arquivos de configurações de css e scss dos snippets da IDE e aproveitar!!! | |
* Segue a Doc para colocar os snippets no VisualCode https://code.visualstudio.com/Docs/customization/userdefinedsnippets | |
*/ | |
/ * | |
* Snippet following the css idiomatic documentation, | |
* Just put in your css and scss settings files from the IDE snippets and enjoy !!! | |
* Follow Doc to place the snippets in VisualCode https://code.visualstudio.com/Docs/customization/userdefinedsnippets | |
* / | |
"Idiomatic Section Coment": { | |
"prefix": "com-sect", | |
"body": [ | |
"/* ==========================================================================", | |
" Section comment block", | |
" ========================================================================== */" | |
], | |
"description": "Idiomatic - Section Coment" | |
}, | |
"Idiomatic Sub Section Coment": { | |
"prefix": "com-subsect", | |
"body": [ | |
"/* Sub-section comment block", | |
" ========================================================================== */" | |
], | |
"description": "Idiomatic Css - Sub Section Coment" | |
}, | |
"Idiomatic Block Coment": { | |
"prefix": "com-block", | |
"body": [ | |
"/* Basic comment */" | |
], | |
"description": "Idiomatic Css - Block Coment" | |
}, | |
"Idiomatic Description Coment": { | |
"prefix": "com-descript", | |
"body": [ | |
"/**", | |
"* Short description using Doxygen-style comment format", | |
"*", | |
"* The first sentence of the long description starts here and continues on this", | |
"* line for a while finally concluding here at the end of this paragraph.", | |
"*", | |
"* documentation. It can include example HTML, URLs, or any other information", | |
"* The long description is ideal for more detailed explanations and", | |
"* that is deemed necessary or useful.", | |
"*", | |
"* @tag This is a tag named 'tag'", | |
"*", | |
"* TODO: This is a todo statement that describes an atomic task to be completed", | |
"* at a later date. It wraps after 80 characters and following lines are", | |
"* indented by 2 spaces.", | |
"*/" | |
], | |
"description": "Idiomatic Css - Description Coment" | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment