Questions tagged [ignore-files]

9 questions
32
votes
4 answers

ignoring folders in mercurial

Caveat: I try all the posibilities listed here: How can I ignore everything under a folder in Mercurial. None works as I hope. I want to ignore every thing under the folder test. But not ignore srcProject\test\TestManager I try syntax:…
user2427
  • 7,492
  • 18
  • 57
  • 71
14
votes
6 answers

Git ignore file for VB.NET projects

I wan to place a VB.NET project under Git control in Windows (was previously under Visual Source Safe - long sad story of repository corruption, etc.). How should I set up the ignore file? The exclusions I'm thinking of using…
John C
  • 273
  • 1
  • 3
  • 8
10
votes
2 answers

Ignore files in build script - Xcode

I have added few dummy responses as json files to test my application when the web services are down. While i generate the framework(iOS) i need to discard all the *.json files. Because having those files might get me problems in pen testing. I am…
vivin
  • 964
  • 1
  • 7
  • 22
8
votes
4 answers

A Python walker that can ignore directories

I need a file system walker that I could instruct to ignore traversing directories that I want to leave untouched, including all subdirectories below that branch. The os.walk and os.path.walk just don't do it.
Johan Carlsson
  • 683
  • 3
  • 11
  • 24
2
votes
3 answers

Python walker that does NOT go into specific folders

this is my first post, so be gentle. ;) PROBLEM: I would like to be able to use os.walk as a directory walker, but not do into certain folders. Ex: Tree: \Proj1_0 \Load001 \lib \src \Proj2_0 \Load001 \lib …
Brian B
  • 45
  • 6
1
vote
1 answer

In IntelliJ IDEA, how can you filter JS files out of "Find Usage" results when using TypeScript?

Is there a way to configure IntelliJ IDEA so that when you transpile code from TypeScript to Javascript, it ignores the Javascript files in search results and most importantly omit them in Find Usages results? In doing so, however, it would also be…
bigp
  • 3,913
  • 3
  • 27
  • 52
0
votes
0 answers

why does Goland: `Find in Files...` ignore some non-excluded files?

I'm using Goland as a multi-lang IDE, covering not just Go, but also Javascript/Typescript, HTML, CSS, and Yaml -- life in a Kubernetes world. I have one .ts file in a folder with other .ts and legacy .js files, and Find in Files always ignores it.…
Eric
  • 1,832
  • 2
  • 17
  • 27
0
votes
1 answer

Watchdog ignore pattern

I tried working with other posts on here about this, but couldn't get it to work. I'm a newbie with Python. I need help with ignore_pattern. I'm uploading images to a folder and temporarily images are being added with __, so the actual image added…
0
votes
1 answer

How to run a tslint script while ignoring specific file types

I've got TSLint running nicely in my IDE and everything is great! However when I run npm run tslint it throws errors on some of my .svg and .scss files. It shouldn't be running on that and it doesn't run those in my IDE so what's up? Here's my…
Barry Michael Doyle
  • 6,372
  • 18
  • 63
  • 110