You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
We keep the McCabe complexity as reported by the [check_my_code function](https://github.com/Remi-Gau/check_my_code) below 15 or the [MISS_HIT code checker](https://florianschanda.github.io/miss_hit). A couple of code quality metrics are also checked automatically by MISS_HIT (avoiding functions with too many nested `if` blocks).
65
+
We keep the McCabe complexity as reported by the [check_my_code function](https://github.com/Remi-Gau/check_my_code) below 15 or the [MISS_HIT code checker](https://florianschanda.github.io/miss_hit). A couple of code quality metrics are also checked automatically by MISS_HIT (avoiding functions with too many nested `if` blocks).
69
66
70
-
We use the [MISS_HIT linter](https://florianschanda.github.io/miss_hit/style_checker.html) to automatically fix some linting issues.
67
+
We use the [MISS_HIT linter](https://florianschanda.github.io/miss_hit/style_checker.html) to automatically fix some linting issues.
71
68
72
69
The code style and quality is also checked during the [continuous integration](./.travis.yml).
73
70
74
-
## <aname='Howtoinstall'></a>How to install
71
+
## How to install
75
72
76
-
### <aname='Downloadwithgit'></a>Download with git
73
+
### Download with git
77
74
78
75
```bash
79
76
cd fullpath_to_directory_where_to_install
@@ -95,7 +92,7 @@ To work with a specific version, create a branch at a specific version tag numbe
95
92
git checkout -b version1 v1.0.0
96
93
```
97
94
98
-
### <aname='Addasasubmodule'></a>Add as a submodule
95
+
### Add as a submodule
99
96
100
97
Add it as a submodule in the repo you are working on.
Remember that updates to submodules need to be committed as well.
115
112
116
-
#### <aname='Exampleforsubmoduleusage'></a>Example for submodule usage
113
+
#### Example for submodule usage
117
114
118
115
So say you want to clone a repo that has some nested submodules, then you would type this to get the content of all the submodules at once (here with my experiment repo):
0 commit comments