summaryrefslogtreecommitdiffstats
path: root/spec/.eslintrc
blob: 21871d52f7db78221c66d2962d6f5d0e615ff2ee (plain)
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
{
  "globals": {
    "CompilerContext": true,
    "Handlebars": true,
    "handlebarsEnv": true,

    "shouldCompileTo": true,
    "shouldCompileToWithPartials": true,
    "shouldThrow": true,
    "compileWithPartials": true,

    "console": true,
    "require": true,
    "suite": true,
    "equal": true,
    "equals": true,
    "test": true,
    "testBoth": true,
    "raises": true,
    "deepEqual": true,
    "start": true,
    "stop": true,
    "ok": true,
    "strictEqual": true,
    "define": true
  },
  "env": {
    "mocha": true
  },
  "rules": {
    // Disabling for tests, for now.
    "no-path-concat": 0,

    "no-var": 0
  }
}