尽管所有尝试忽略它的操作,Atom仍然显示node_modules文件夹

时间:2018-10-22 14:34:44

标签: node.js atom-editor

我从osx系统中删除了atom,重新安装了最新版本。 我在项目文件夹的根目录下有一个.gitignore文件:

我的设置| Core具有选中的设置“排除VCS忽略的路径”

我的config.cson具有:

"*":
  core:
    ignoredNames: [
      "node_modules"
    ]
    telemetryConsent: "no"
    themes: [
      "one-light-ui"
      "atom-light-syntax"
    ]
  editor:
    fontSize: 13
  "exception-reporting":
    userId: "asdf"
  "tree-view":
    hideVcsIgnoredFiles: true

我重新启动了atom,但是仍然可以在文件夹树中看到node_modules以及.DS_Store文件等。

我的.gitignore有:

node_modules 
node_modules/ 
build 
.DS_Store

我在这里做什么错了?

0 个答案:

没有答案