d65683434d
* Convert tests to vitest * fix git tests * Cleanup * Convert ignore comments * address code review comments
38 lines
715 B
JavaScript
38 lines
715 B
JavaScript
module.exports = {
|
|
globals: {
|
|
CompilerContext: true,
|
|
Handlebars: true,
|
|
handlebarsEnv: true,
|
|
shouldCompileTo: true,
|
|
shouldCompileToWithPartials: true,
|
|
shouldThrow: true,
|
|
expectTemplate: true,
|
|
compileWithPartials: true,
|
|
suite: true,
|
|
equal: true,
|
|
equals: true,
|
|
test: true,
|
|
testBoth: true,
|
|
raises: true,
|
|
deepEqual: true,
|
|
start: true,
|
|
stop: true,
|
|
ok: true,
|
|
vi: true,
|
|
strictEqual: true,
|
|
define: true,
|
|
expect: true,
|
|
beforeEach: true,
|
|
afterEach: true,
|
|
describe: true,
|
|
it: true,
|
|
},
|
|
rules: {
|
|
// Disabling for tests, for now.
|
|
'no-path-concat': 'off',
|
|
|
|
'no-var': 'off',
|
|
'dot-notation': 'off',
|
|
},
|
|
};
|