Sublime Forum

Ability to change the default .sublime-project

#1

Hi,
I’d like to be able to change the default .sublime-project file layout. I create new projects often and each time I need to have a recent project open from which I copy-paste parts from the .sublime-project file I will reuse per project basis.

For the example below I’d like to have SublimeLinter and settings.todoreview for each new project I create.

{
  "folders": [
    {
      "path": ".",
      "file_exclude_patterns": [
      ],
      "folder_exclude_patterns": [
        "node_modules",
        "bower_components"
      ]
    }
  ],
  "SublimeLinter": {
    "linters": {
      "eslint": {
        "excludes": [
          "node_modules/*",
          "bower_components/*"
        ]
      }
    }
  },
  "settings": {
    "todoreview": {
      "exclude_folders": [
        "*.git*",
        "*node_modules*",
        "*bower_components*",
      ]
    }
  }
}
0 Likes

#2

Sounds like Snippets would be ideal for you here.

0 Likes