Skip to content

Commit b084b1c

Browse files
committed
fix linter a bit
1 parent a77a395 commit b084b1c

File tree

2 files changed

+2
-2
lines changed

2 files changed

+2
-2
lines changed

.github/workflows/lint-source.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -29,7 +29,7 @@ jobs:
2929
run: pip install fortitude-lint ansi2txt
3030

3131
- name: Lint the source code
32-
run: fortitude check --file-extensions=f90,fpp,fypp --ignore=E001,S001,S101,M011,F001,S041,T001 ./src/** || true
32+
run: fortitude check --file-extensions=f90,fpp,fypp --ignore=E001,S001,S101,M011,F001,S041,T001,S101 ./src/** || true
3333

3434
- name: Ensure kind is specified
3535
run: fortitude check --file-extensions=f90,fpp,fypp --select=P001 ./src/**

src/common/m_helper.fpp

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -75,7 +75,7 @@ contains
7575
subroutine s_print_2D_array(A, div)
7676

7777
real(wp), dimension(:, :), intent(in) :: A
78-
real, optional, intent(in) :: div
78+
real(wp), optional, intent(in) :: div
7979

8080
integer :: i, j
8181
integer :: m, n

0 commit comments

Comments
 (0)