summaryrefslogtreecommitdiff
path: root/tests/format/options/compound-and-condition/project.conf
blob: 650d017bd545491fbe1f1800d374a4b0da00cd6a (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
name: test

options:
  debug:
    type: bool
    description: Whether debugging is enabled
    default: False
  logging:
    type: bool
    description: Whether logging is enabled
    default: False

variables:
  debug: 'False'
  (?):
  # Debugging is not enabled unless logging is also enabled
  - logging and debug:
      debug: 'True'