project-configuration/README.md

33 lines
473 B
Markdown
Raw Permalink Normal View History

# Project Configuration Stuff
## Enforcing Configuration
Enforcing is done with the help of nitpick — a command-line tool.
### Installation
2022-10-24 00:02:42 +03:00
Install nitpick:
2021-10-11 14:48:26 +03:00
```sh
pipx install nitpick
```
### Usage
2022-10-24 00:02:42 +03:00
To check for errors only:
```sh
nitpick check
```
2022-10-24 00:02:42 +03:00
To fix and modify your files directly:
```sh
nitpick fix
```
## Initializing a Project
### Python
```sh
cookiecutter https://gitea.radium.group/radium/project-configuration.git --directory cookiecutter-python
```