diff --git a/types/mem-fs/mem-fs-tests.ts b/types/mem-fs/mem-fs-tests.ts index 13a2649f19..ada05c22c7 100644 --- a/types/mem-fs/mem-fs-tests.ts +++ b/types/mem-fs/mem-fs-tests.ts @@ -5,4 +5,4 @@ const file = store.get('hello'); store.add(file, 'hahahahah'); -store.each((file, index) => console.log(index, file.path)); +store.each(file => console.dir(store.get(file.path))); diff --git a/types/mem-fs/tslint.json b/types/mem-fs/tslint.json index 2ff396e742..f93cf8562a 100644 --- a/types/mem-fs/tslint.json +++ b/types/mem-fs/tslint.json @@ -1,6 +1,3 @@ { - "extends": "dtslint/dt.json", - "rules": { - - } + "extends": "dtslint/dt.json" }