How to exclude node_modules folder from Atom searches "Find in project" after you have put node_modules inside your .gitignore file? Does atom require that the project actually has a git repository, or should the .gitignore be enough for Atom to exclude the folder?
My .gitignore looks like this:
.DS_STORE
*.log
node_modules
dist
coverage
Steps
Now a new atom IDE should open.
ignoredNames: ["node_modules"]
under core
Example of a config.cson
"*":
core:
ignoredNames: [
".git"
"node_modules"
]
editor: {}
minimap:
plugins:
"highlight-selected": true
"highlight-selectedDecorationsZIndex": 0
welcome:
showOnStartup: false
Hope this helps