rrt 0.7.0

Path finding using dual-RRT connect
Documentation
{
  "version": "0.2",
  "gitignoreRoot": ".",
  "useGitignore": true,
  "dictionaryDefinitions": [
    {
      "name": "project-dictionary",
      "path": "./.github/.cspell/project-dictionary.txt",
      "addWords": true
    },
    {
      "name": "rust-dependencies",
      "path": "./.github/.cspell/rust-dependencies.txt",
      "addWords": true
    }
  ],
  "dictionaries": ["project-dictionary", "rust-dependencies"],
  "ignoreRegExpList": [
    // Copyright notice
    "Copyright (\\(c\\) )?.*",
    // GHA actions/workflows
    "uses: .+@",
    // GHA context (repo name, owner name, etc.)
    "github.\\w+ (=|!)= '.+'",
    // GH username
    "( |\\[)@[\\w_-]+",
    // Git config username
    "git config user.name .*",
    // Cargo.toml authors
    "authors *= *\\[.*\\]",
    "\".* <[\\w_.+-]+@[\\w.-]+>\""
  ],
  "languageSettings": [
    {
      "languageId": ["*"],
      "dictionaries": ["rust"]
    }
  ],
  "ignorePaths": [
    // Licenses
    "**/LICENSE*"
  ]
}