Update TSLint configuration to detect bad indentation.

This commit is contained in:
Chris Gavin 2020-06-23 14:19:51 +01:00
parent a1d945f14f
commit 211ad30f72
No known key found for this signature in database
GPG key ID: 07F950B80C27E4DA
136 changed files with 15588 additions and 3 deletions

3
node_modules/isarray/index.js generated vendored Normal file
View file

@ -0,0 +1,3 @@
module.exports = Array.isArray || function (arr) {
return Object.prototype.toString.call(arr) == '[object Array]';
};