cleanup ignore lint errors: no-consecutive-blank-lines, trim-file

This commit is contained in:
segayuu
2017-11-07 10:48:01 +09:00
parent ab7d7db1d2
commit 41fb40bb68
3 changed files with 0 additions and 5 deletions

View File

@@ -3,7 +3,6 @@
// Definitions by: Ruben Slabbert <https://github.com/RubenSlabbert>
// Definitions: https://github.com/DefinitelyTyped/DefinitelyTyped
declare namespace Nunjucks {
function render(name: string, context?: Object): string;
function render(name: string, context?: Object, callback?: (err: any, res: string) => any): void;

View File

@@ -1,7 +1,5 @@
import nunjucks = require("nunjucks");
nunjucks.configure({ autoescape: false });
let rendered = nunjucks.render("./noexists.html");

View File

@@ -5,10 +5,8 @@
"dt-header": false,
"export-just-namespace": false,
"interface-name": false,
"no-consecutive-blank-lines": false,
"prefer-const": false,
"strict-export-declare-modifiers": false,
"trim-file": false,
"unified-signatures": false
}
}