Skip to content

Commit 7401a19

Browse files
committed
style: consistently use asterisks for bullets
1 parent 93a6860 commit 7401a19

File tree

1 file changed

+5
-4
lines changed

1 file changed

+5
-4
lines changed

STYLE_GUIDE.md

Lines changed: 5 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -11,14 +11,15 @@
1111

1212
## File naming conventions
1313

14-
- Source files should contain at most one `program`, `module`, or `submodule`.
15-
- The filename should match the program or module name and have the file extension `.f90` or `.F90` if preprocessing is required.
16-
- If the interface and implementation is split using submodules the implementation submodule file should have the same name as the
14+
* Source files should contain at most one `program`, `module`, or `submodule`.
15+
* The filename should match the program or module name and have the file extension `.f90` or `.F90` if preprocessing is required.
16+
* If the interface and implementation is split using submodules the implementation submodule file should have the same name as the
1717
interface (parent) module but end in `_implementation`.
1818
E.g., `string_class.f90` and `string_class_implementation.f90`
19-
- Tests should be added in the `tests` subdirectory and have the same name as the module they are testing with the `test_` prefix
19+
* Tests should be added in the `tests` subdirectory and have the same name as the module they are testing with the `test_` prefix
2020
added.
2121
E.g., `string_class.f90` and `tests/test_string_class.f90`
22+
* There should only ever be one `program` and `module` statement per file.
2223

2324
## Indentation & whitespace
2425

0 commit comments

Comments
 (0)