.gitignoreファイル内にnode_modulesを配置した後に、Atom検索からnode_modulesフォルダーを除外する方法は、「プロジェクトを検索」を検索しますか? atomは、プロジェクトに実際にgitリポジトリーがあることを要求しますか、またはAtomがフォルダーを除外するには.gitignoreで十分ですか?
私の.gitignoreは次のようになります。
.DS_STORE
*.log
node_modules
dist
coverage
手順
新しいatom IDEが開くはずです。
core
の下にignoredNames: ["node_modules"]
を追加しますconfig.cson
の例
"*":
core:
ignoredNames: [
".git"
"node_modules"
]
editor: {}
minimap:
plugins:
"highlight-selected": true
"highlight-selectedDecorationsZIndex": 0
welcome:
showOnStartup: false
お役に立てれば
Atom(Windowsで1.28.2を使用しています)の新しいバージョンの場合)File > Config...
経由でconfig.csonにアクセスしました
次に、 この前の回答 で述べたように、ignoredNames: ["node_modules"]
をcore
セクションの下に追加する必要があります。
"*":
core:
telemetryConsent: "no"
themes: [
"one-light-ui"
"one-light-syntax"
]
ignoredNames: ["node_modules"]