It seems I am getting mix information and behavior in how the “.ratignore" file 
works.

I remember in older versions maybe 0.12, we could use glob patterns. 

For example the following worked:
```
*.properties
.*
VERSION
node_modules
```
This covered extensions, leading dot files, filename, and directory names.


I seen other projects even mentioned the ability to provide multi-level 
directory paths. For example:
```
something/inner/subdir
```

It appears I had to change the expression for newer versions of Rat. I think it 
was from 0.13+:

```
(.*).properties
\..(.*)
VERSION
node_modules
```

But I could never get multi-level directory paths to check. Does such a feature 
exist? Is it something that could be supported?

Reply via email to