Skip to content

Commit

Permalink
Merge pull request #54 from kenlim/patch-1
Browse files Browse the repository at this point in the history
Corrected "search_subfolder" instructions
  • Loading branch information
nielsmaerten authored Mar 14, 2023
2 parents 9c8ed86 + 8698c65 commit 3661a00
Show file tree
Hide file tree
Showing 4 changed files with 6 additions and 6 deletions.
2 changes: 1 addition & 1 deletion assets/config/example.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,7 @@
# https://github.com/nielsmaerten/ynab-buddy/blob/main/docs/how-to-configure.md

import_from: "c:/users/test/downloads"
search_subfolders: true
search_subdirectories: true

bank_transaction_files:
# Repeat the following block for every account:
Expand Down
6 changes: 3 additions & 3 deletions docs/how-to-configure.md
Original file line number Diff line number Diff line change
Expand Up @@ -29,11 +29,11 @@ Set to `true` to always use `import_from` without confirmation

**Optional.**

### `search_subfolders`
### `search_subdirectories`

```yaml
search_subfolders: false # only search the top folder for bank files
search_subfolders: true # search underlying folders as well
search_subdirectories: false # only search the top folder for bank files
search_subdirectories: true # search underlying folders as well
```

### `configuration_done`
Expand Down
2 changes: 1 addition & 1 deletion src/lib/configuration.spec.fixture.ts
Original file line number Diff line number Diff line change
Expand Up @@ -15,7 +15,7 @@ export const configFile = `#######################################
# https://github.com/nielsmaerten/ynab-buddy/blob/main/docs/how-to-configure.md
import_from: "c:/users/test/downloads"
search_subfolders: true
search_subdirectories: true
bank_transaction_files:
# Repeat the following block for every account:
Expand Down
2 changes: 1 addition & 1 deletion src/lib/configuration.spec.ts
Original file line number Diff line number Diff line change
Expand Up @@ -75,7 +75,7 @@ describe("configuration", () => {
name: "bnp-example-parser",
},
],
searchSubDirectories: false,
searchSubDirectories: true,
importPath: "c:/users/test/downloads",
ynab: {
token: "ABC12345",
Expand Down

0 comments on commit 3661a00

Please sign in to comment.