web-dev-qa-db-ja.com

Atom node_modulesフォルダーを検索から除外

.gitignoreファイル内にnode_modulesを配置した後に、Atom検索からnode_modulesフォルダーを除外する方法は、「プロジェクトを検索」を検索しますか? atomは、プロジェクトに実際にgitリポジトリーがあることを要求しますか、またはAtomがフォルダーを除外するには.gitignoreで十分ですか?

私の.gitignoreは次のようになります。

.DS_STORE
*.log

node_modules

dist
coverage
50
Ville Miekk-oja

手順

  1. アトムを起動
  2. メニューから:編集>設定(Mac>アトム>優先)
  3. サイドメニューから、「設定フォルダを開く」ボタンをクリックします

新しいatom IDEが開くはずです。

  1. ファイル「config.cson」を開きます
  2. coreの下にignoredNames: ["node_modules"]を追加します

config.csonの例

"*":
  core:
    ignoredNames: [
      ".git"
      "node_modules"
    ]
  editor: {}
  minimap:
    plugins:
      "highlight-selected": true
      "highlight-selectedDecorationsZIndex": 0
  welcome:
    showOnStartup: false

お役に立てれば

60
codesmarter

検索の「ファイル/ディレクトリパターン」フィールドで、感嘆符の後に無視するディレクトリの名前を使用します。

enter image description here

42
Rodrigo Pinto

.gitignoreファイルが、ディレクトリ内でディレクトリ内の検索を実行している場所よりも高い位置にある場合、node_modulesはAtomの検索から除外されません。

そのため、node_modulesをCore SettingsのIgnored Namesリストに追加することをお勧めします。

Atom Editor Ignored File Names

38
Reggie Pinkham

.gitignoreファイルは、無視する「VCSがパスを無視する」オプションをオンにしている限り、Atomがフォルダーを除外するのに十分なはずです。

また、node_modulesの後に「/」を追加する必要があります

node_modules/

enter image description here

17
Fab313

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"]
1
Strider