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
| or [octave](https://www.gnu.org/software/octave/)| 4.? |
47
+
| or [Octave](https://www.gnu.org/software/octave/)| 4.? |
48
48
49
49
Tested:
50
50
- matlab 2015b or octave 4.2.2 and PTB 3.0.14.
@@ -55,7 +55,14 @@ We use the `camelCase` to more easily differentiates our functions from the ones
55
55
56
56
In practice, we use the following regular expression for function names: `[a-z]+(([A-Z]|[0-9]){1}[a-z]+)*`.
57
57
58
-
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)
58
+
> Regular expressions look scary but are SUPER useful to sort through filenames:
59
+
> - A quick [intro to regular expression](https://www.rexegg.com/)
60
+
> - And many websites allow you to "design and test" your regular expression:
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).
59
66
60
67
We use the [MISS_HIT linter](https://florianschanda.github.io/miss_hit/style_checker.html) to automatically fix some linting issues.
61
68
@@ -71,11 +78,9 @@ cd fullpath_to_directory_where_to_install
0 commit comments