Version: v1.0.10
This extension inserts an header in a new file or an existing file.
- JavaScript
- C++
- C
- C#
- CSS
- Go
- Groovy
- Java
- Less
- Objectiv C
- Objectiv C++
- Razor
- SCSS
- SQL
- Swift
- TypeScript
- Makefile
- Dockerfile
- CoffeeScript
- Yaml
- HTML
- Jade
- XML
- Python
- Usage
- Configure
- Futur implementations
- Release notes
- Known bugs
- How to contribute?
- Contributors
- License
When a new file is created and has code inside, VS Code will be able to detect which langage you are using and the extension will display a confirmation box (see below) to insert an header. In addition, if you open a file with code inside but which has no header, the extension will detect it and ask you if you want to insert one.
- Go to
Preferences
>Settings
- Search by extension name in search bar
- Modify extension settings
You can also override global configuration using a file .vsconfig
at the root directory of your project. It has to respect JSON format and implement the following variables:
{
"fileheader": {
"Author": "APPI",
"Email": "[email protected]",
"Copyrights": "GPL-3.0"
}
}
/**
* @author APPI <[email protected]>
* @file Description
* @desc Created on 2019-08-28 12:18:44 pm
* @copyright APPI SASU
*/
Feel free to propose new ideas by opening new issues ! 🚀
- Customized settings per project (v1.0.10)
v1.0.10
- Add per project configuration using
.vsconfig
- Add
python
support
v1.0.9
- Fixed vulnerabilities
v1.0.8
- New header format
- Remove update date from header
Previous versions
- Inserts an header in new/existing file
- Asks for permission to insert
- Enter / Escape macros
Contributions are most welcome! 😄
- Fork it
- Create your feature branch (git checkout -b my-new-feature)
- Commit your changes (git commit -am 'Added some feature')
- Push to the branch (git push origin my-new-feature)
- Create new Pull Request
See license.txt.