aboutsummaryrefslogtreecommitdiff
path: root/exampleData/ruleSets/template.json
blob: 43ab973238133aaeefe986c148732c63ecc1258c (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
/*
 * template.json
 * Author: Benjamin Jones <bjones@galois.com>
 *
 * Template ruleset containing one empty rule.
 */

{ 'name': 'NAME'
  , 'description': 'DESCRIPTION'
    , 'rules': [
    //--------------------------------------------
    { 'id': 123456789
    , 'name': 'RULE NAME'
    , 'description': 'RULE DESC'
    , 'rule':
        function() {} // Function that checks the rule
    }//,
  //--------------------------------------------
  ]
}