Commit ba79cebd authored by chriseth's avatar chriseth Committed by GitHub

Merge pull request #479 from ethereum/list-tree-avoid-config

Ignore .remix.config in files.listAsTree()
parents 7286c9a3 ef6865a1
......@@ -139,6 +139,11 @@ function Files (storage) {
var self = this
storage.keys().forEach(function (path) {
// NOTE: as a temporary measure do not show the config file
if (path === '.remix.config') {
return
}
hashmapize(tree, path, {
'/readonly': self.isReadOnly(path),
'/content': self.get(path)
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment