mirror of
https://github.com/zhigang1992/DefinitelyTyped.git
synced 2026-06-09 06:17:11 +08:00
Cleanup lint ignore error: prefer-const
This commit is contained in:
@@ -1,3 +1,3 @@
|
||||
import ejs = require("ejs");
|
||||
var people = ['geddy', 'neil', 'alex'];
|
||||
var html = ejs.render('<%= people.join(", "); %>', { people: people });
|
||||
const people = ['geddy', 'neil', 'alex'];
|
||||
const html = ejs.render('<%= people.join(", "); %>', { people: people });
|
||||
|
||||
@@ -5,7 +5,6 @@
|
||||
"interface-over-type-literal": false,
|
||||
"no-var-keyword": false,
|
||||
"object-literal-shorthand": false,
|
||||
"prefer-const": false,
|
||||
"unified-signatures": false
|
||||
}
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user