Skip to content

Commit e796647

Browse files
committedJan 4, 2025
Prep for new minor release
- Update README - Make linter happy
1 parent b79ea50 commit e796647

File tree

2 files changed

+3
-3
lines changed

2 files changed

+3
-3
lines changed
 

‎README.md

+2-2
Original file line numberDiff line numberDiff line change
@@ -64,7 +64,7 @@ Once you have configured your importer, run `actual-monmon verify` to verify tha
6464

6565
## Usage
6666

67-
Once configured, importing is as simple as running `actual-monmon import`. Make sure that the Actual servers are running and that MoneyMoney is unlocked. By default, the importer will import 1 month worth of transactions. You can override this by passing the `--from` property, like so: `actual-monmon import --from=2024-01-01`.
67+
Once configured, importing is as simple as running `actual-monmon import`. Make sure that the Actual servers are running and that MoneyMoney is unlocked. By default, the importer will import 1 month worth of transactions. You can override this by passing the `--from` property, like so: `actual-monmon import --from=2024-01-01`. Similarly, a `--to` property is available in case you want to import a specific date range.
6868

6969
The importer will not track previous imports, so if you wait more than one month between imports, you might need to manually specify the last import date. Running the importer twice in the same month is no problem, as duplicate transactions will automatically be detected and skipped.
7070

@@ -74,7 +74,7 @@ The following configuration options can optionally be added
7474

7575
### Ignore patterns
7676

77-
Ignore patterns allow you to specify payee names, comments, or purposes which should be ignored. *Note:* Currently, the strings are treated as is, meaning they are case-sensitive, and will be checked for inclusion, not exact matches.
77+
Ignore patterns allow you to specify payee names, comments, or purposes which should be ignored. _Note:_ Currently, the strings are treated as is, meaning they are case-sensitive, and will be checked for inclusion, not exact matches.
7878

7979
```
8080
[import.ignorePatterns]

‎src/utils/Importer.ts

+1-1
Original file line numberDiff line numberDiff line change
@@ -160,7 +160,7 @@ class Importer {
160160

161161
let monMonTransactions = await getTransactions({
162162
from: importDate,
163-
to: toDate
163+
to: toDate,
164164
});
165165

166166
if (monMonTransactions.length === 0) {

0 commit comments

Comments
 (0)
Please sign in to comment.