mirror of
https://github.com/TryGhost/Ghost.git
synced 2024-11-22 19:32:54 +03:00
a09abaf8a5
no issue - This removes the `casper` and `source` submodules from the VSCode source control sidebar to simplify the view. - It also points all of VSCode's `git` commands in the command palette to the root repository (Ghost), so you don't have to specify which repo you want to commit to every time. - With this, you can simply run the "Git commit all" command in VSCode (and optionally map a keybinding to it), which adds all changed files to the commit and prompts for a commit message.
28 lines
561 B
JSON
28 lines
561 B
JSON
{
|
|
"editor.quickSuggestions": {
|
|
"strings": true
|
|
},
|
|
"eslint.workingDirectories": [
|
|
{
|
|
"pattern": "./apps/*/"
|
|
},
|
|
{
|
|
"pattern": "./ghost/*/"
|
|
}
|
|
],
|
|
"search.exclude": {
|
|
"**/*.js.snap": true,
|
|
"**/.git": true,
|
|
"**/build/*": true,
|
|
"**/coverage/**": true,
|
|
"**/dist/**": true,
|
|
"**/ghost.map": true,
|
|
"**/node_modules": true,
|
|
"ghost/core/core/built/**": true
|
|
},
|
|
"tailwindCSS.experimental.classRegex": [
|
|
["clsx\\(([^)]*)\\)", "(?:'|\"|`)([^']*)(?:'|\"|`)"]
|
|
],
|
|
"git.detectSubmodules": false
|
|
}
|