rojo icon indicating copy to clipboard operation
rojo copied to clipboard

Glob ignore paths doesn't work for projects that define content above their relative path

Open Quenty opened this issue 3 months ago • 0 comments

If you have this pattern

{
  "name": "TestProject",
  "globIgnorePaths": [ "**/*.lua" ],
  "tree": {
    "$className": "DataModel",
    "ServerScriptService": {
      "avatareditor": {
        "$path": ".."
      },
      "Script": {
        "$path": "scripts/Server"
      }
    },
    "StarterPlayer": {
      "StarterPlayerScripts": {
        "Main": {
          "$path": "scripts/Client"
        }
      }
    }
  }
}```

Glob ignore paths will not apply to anything above the base project directory. This is because the glob ignore paths are setup to ignore anything beneath the current directory.

Quenty avatar May 04 '24 21:05 Quenty