cpp.json.code-snippets (938B)
1 { 2 "MIT Compact Header": { 3 "prefix": "cpp", 4 "body": [ 5 "/*", 6 " * Author: Amit Dutta <amitdutta4255@gmail.com> | Date: $CURRENT_DATE $CURRENT_MONTH_NAME_SHORT $CURRENT_YEAR", 7 " * Repo: https://github.com/notamitgamer/bsc", 8 " * License: MIT", 9 " */", 10 "", 11 "/* $0 */" 12 ], 13 "description": "Insert MIT Compact Header" 14 }, 15 "MIT Standard Header": { 16 "prefix": "c_s", 17 "body": [ 18 "/*", 19 " * Author : Amit Dutta <amitdutta4255@gmail.com>", 20 " * Date : $CURRENT_DATE $CURRENT_MONTH_NAME_SHORT $CURRENT_YEAR", 21 " * Repo : https://github.com/notamitgamer/bsc", 22 " * License : MIT License (See the LICENSE file for details)", 23 " */", 24 "", 25 "/* $0 */" 26 ], 27 "description": "Insert MIT Standard Header" 28 } 29 }