Skip to content

Commit 9f55082

Browse files
authored
Merge pull request #2 from cpp-lln-lab/pre-commit-ci-update-config
[pre-commit.ci] pre-commit autoupdate
2 parents c71ef5b + 58fb35c commit 9f55082

5 files changed

Lines changed: 15 additions & 15 deletions

File tree

.pre-commit-config.yaml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -36,7 +36,7 @@ repos:
3636
additional_dependencies: [miss_hit]
3737

3838
- repo: https://github.com/pre-commit/pre-commit-hooks
39-
rev: v4.0.1
39+
rev: v4.2.0
4040
hooks:
4141
- id: trailing-whitespace
4242
- id: end-of-file-fixer

README.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -35,4 +35,4 @@ cfg.out_path = fullfile(cfg.bidsroot, 'derivatives');
3535
initialize_letswave();
3636
3737
import_bids(cfg);
38-
```
38+
```

src/importBids.m

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -59,7 +59,7 @@ function importBids(cfg)
5959

6060
delete(files{iFile});
6161

62-
case '.bdf'
62+
case '.bdf'
6363
configuration = LW_import_BDF('default');
6464

6565
configuration.parameters.filenames = {files{iFile}};
@@ -69,7 +69,7 @@ function importBids(cfg)
6969
save_data(files{iFile}, datasets);
7070

7171
delete(files{iFile});
72-
72+
7373
otherwise
7474
% TODO
7575
warning('FORMAT NOT YET SUPPORTED');

tests/test_importBids.m

Lines changed: 10 additions & 10 deletions
Original file line numberDiff line numberDiff line change
@@ -10,7 +10,7 @@
1010
function test_import_bids_eeglab()
1111

1212
cfg.out_path = fullfile(this_dir(), 'output', 'eeglab');
13-
13+
1414
clean_dir(cfg.out_path);
1515

1616
cfg.bidsroot = fullfile(return_test_data_dir(), 'eeglab');
@@ -19,18 +19,18 @@ function test_import_bids_eeglab()
1919
close all;
2020

2121
importBids(cfg);
22-
23-
% TODO
22+
23+
% TODO
2424
% add tests
25-
26-
% clean_dir();
25+
26+
% clean_dir();
2727

2828
end
2929

3030
function test_import_bids_biosemi()
3131

3232
cfg.out_path = fullfile(this_dir(), 'output', 'biosemi');
33-
33+
3434
clean_dir(cfg.out_path);
3535

3636
cfg.bidsroot = fullfile(return_test_data_dir(), 'spm_multimodal');
@@ -39,11 +39,11 @@ function test_import_bids_biosemi()
3939
close all;
4040

4141
importBids(cfg);
42-
43-
% TODO
42+
43+
% TODO
4444
% add tests
45-
46-
% clean_dir();
45+
46+
% clean_dir();
4747

4848
end
4949

version.txt

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1 +1 @@
1-
v0.1.0
1+
v0.1.0

0 commit comments

Comments
 (0)