Skip to content

Commit

Permalink
Add sublime text project/workspace extensions to pants .gitignore.
Browse files Browse the repository at this point in the history
This allows for Sublime Text users to store project files that contain metadata needed for fancier editor features like tab completion against the pants venv, etc:

    [illuminati pants (kwlzn/gitignore_sublime_project)]$ cat pants.sublime-project
    {
      "folders": [
        {
          "path": "."
        }
      ],
      "settings": {
        "python_interpreter": "$project_path/build-support/pants_dev_deps.venv/bin/python2.7",
        "python_package_paths": [
          "$project_path/build-support/pants_dev_deps.venv/lib/python2.7/site-packages",
          "$project_path/src/python/pants",
          "$project_path/tests/python/pants_test"
        ]
      }
    }

Testing Done:
Verified files are ignored locally.

Reviewed at https://rbcommons.com/s/twitter/r/3409/
  • Loading branch information
kwlzn committed Feb 2, 2016
1 parent 97f0fb4 commit 12dbb8f
Showing 1 changed file with 2 additions and 0 deletions.
2 changes: 2 additions & 0 deletions .gitignore
Original file line number Diff line number Diff line change
Expand Up @@ -5,6 +5,8 @@
*.pyc
*.hprof
*.swp
*.sublime-project
*.sublime-workspace
*~
*#
.#*
Expand Down

0 comments on commit 12dbb8f

Please sign in to comment.