KO
|
EN
gitlite — search
Search
#python
#java
#python3
#arduino
#golang
#machine-learning
#rust
#html
#flask
#javascript
#seismology
#nodejs
projj-hooks
★ 17
Open GitHub ↗
No description available.
Download README (.md)
Explore Similar Repositories
websock3ds
:
Example websocket server for Nintendo 3DS
vaadin-form-layout
:
The Web Component providing configurable responsive layout for form elements. Part of the Vaadin components.
2017-goals
:
:sparkles: :heart_decoration: :sparkles: My professional and personal goals for 2017.
all-4-one
:
No description available.
faf-stack
:
Aggregate project that allows to set up and manage a complete FAF environment within minutes
// repository documentation
Was this content helpful?
★ 0
(0 ratings)
Select Rating:
★
★
★
★
★
Submit Feedback
Recent Feedback
×
Download README
Do you want to download the
README.md
file for
projj-hooks
?
Download (.md)
# Projj-hooks Hooks for [Projj](https://github.com/popomore/projj) ## Usage ```bash $ npm i projj-hooks -g ``` Config it in [hooks](#Hooks) ```json { "hooks": { "clean": "clean" } } ``` ## Hooks ### clean Clean node_modules and ignored git files. default options ```json { "hooks": { "clean": "projj_clean" }, "clean": { "node_modules": true, "git": true } } ``` ### git_config_user Add `user.name`, `user.email` and `user.signingkey` for git config options ```json { "hooks": { "git_config_user": "projj_git_config_user" }, "git_config_user": { "github.com": { "name": "your name", "email": "your email", "signingkey": "your signingkey" } } } ``` ### atom_project Hook for [atom project](https://github.com/danielbrodin/atom-project-manager) It will generate `projects.cson` from all projj repositories. options ```json { "hooks": { "atom_project": "projj_atom_project" }, "atom_project": { "setting": "/path/to/projects.cson" } } ``` ### dirty Check git repository whether dirty or not. options ```json { "hooks": { "dirty": "projj_dirty" } } ``` ### vscode_project_manager Hook for [vscode-project-manager](https://github.com/alefragnani/vscode-project-manager) It will generate `projects.json` from all projj repositories. ```json { "hooks": { "vscode_project_manager": "projj_vscode_project_manager" }, "atom_project": { "setting": "/path/to/projects.json" } } ``` ## License [MIT](LICENSE)