Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/nullren/create-idea-module
https://github.com/nullren/create-idea-module
Last synced: 20 days ago
JSON representation
- Host: GitHub
- URL: https://github.com/nullren/create-idea-module
- Owner: nullren
- License: mit
- Created: 2022-07-19T23:43:30.000Z (over 2 years ago)
- Default Branch: main
- Last Pushed: 2022-10-29T05:23:50.000Z (about 2 years ago)
- Last Synced: 2024-10-10T18:41:25.473Z (about 1 month ago)
- Language: Rust
- Size: 16.6 KB
- Stars: 0
- Watchers: 2
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
- License: LICENSE
Awesome Lists containing this project
README
# create-idea-module
Sometimes Intellij will mess up its own module structure. This tool is designed to help you fix that. It will create a module for you and add it to the correct place in the module structure.
```
USAGE:
create-idea-module [OPTIONS]OPTIONS:
-h, --help Print help information
-n, --module-name
-o, --output-directory
-V, --version Print version
```# Example
```
create-idea-module -o ../some-repo -n some-repo
```For a project named `vanityeth` this will create the idea project directory `../vanityeth/.idea` as well as the module metadata files needed to give Intellij the correct module structure.
# Future work
- Make this a little more flexible—not every project is a rust module.
- Multiple modules per project.
- Specify module files location separate from project directory.