-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathdefault.conf
40 lines (30 loc) · 1.68 KB
/
default.conf
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
# Author: Bertrand Benoit <mailto:contact@bertrand-benoit.net>
# Version: 3.0
# Description: default configuration file for this tool.
#
# IMPORTANT: you should NOT edit this file directly, but you can override any configuration,
# with your user configuration file (usually ~/.config/bankReportToQIF.conf)
## Defines various configuration.
config.account.name=""
config.account.type="Type:Bank"
config.defaultThresholdOfPositiveAmount=175
config.tooMuchPositiveAmountWarningThreshold=6
## Defines various patterns.
# Pattern of an header line allowing to compute count of characters corresponding to Debit, or Credit (used to define sign of value)
patterns.debitNCreditHeader="^.*D[ \t]*[eé]bit.*C[ \t]*r[eé]dit.*$"
# Pattern of each transaction lines to consider (including those with only additional labels)
patterns.transactionLine="^[ ]{1,3}[0-9]|^[ ]{5,24}[A-Z0-9+*]"
# Pattern allowing to detect Date information.
patterns.date="^[0-9][0-9][.][0-9][0-9]$"
# Pattern allowing to detect amount information.
patterns.amount="[0-9]*[.]*[0-9]*[,][0-9][0-9]"
# Pattern allowing to detect amount with currency in label.
patterns.label.amountWithCurrency="[0-9][0-9]*[,][0-9][0-9]EUR"
# Pattern (| separated) allowing to define all label's part which should be removed.
patterns.label.removeMatchingParts=""
# Pattern (| separated) allowing to define all label's part after which label must be cut.
patterns.label.removeAllAfterMatchingParts=""
# Bank report exclusion pattern (e.g. some useless bank report information like address ...).
patterns.excludedPartsFromReport=""
# Transactions exclusion pattern (e.g. some recurrent transaction which are embedded to GNU/Cash).
patterns.excludedTransactions=""