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

Ignore .remix.config in files.listAsTree()
pull/1/head
chriseth 8 years ago committed by GitHub
commit ba79cebd9d
  1. 5
      src/app/files.js

@ -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)

Loading…
Cancel
Save