mirror of
https://github.com/TryGhost/Ghost.git
synced 2024-12-23 10:53:34 +03:00
Added VS Code workspace settings file
refs https://ghost.slack.com/archives/C02G9E68C/p1685611322859309
refs 7b6eb3171a
- this introduces a `.vscode/settings.json` file which should provide
some reasonable default settings when dealing with this repo
- changes include setting some search exclusions and fixing the working
directory for eslint so Tailwind config is picked up correctly
This commit is contained in:
parent
b307c59d54
commit
bc23285c55
1
.gitignore
vendored
1
.gitignore
vendored
@ -67,6 +67,7 @@ typings/
|
|||||||
*.sublime-*
|
*.sublime-*
|
||||||
.vscode/*
|
.vscode/*
|
||||||
!.vscode/launch.json
|
!.vscode/launch.json
|
||||||
|
!.vscode/settings.json
|
||||||
|
|
||||||
# OSX
|
# OSX
|
||||||
.DS_Store
|
.DS_Store
|
||||||
|
17
.vscode/settings.json
vendored
Normal file
17
.vscode/settings.json
vendored
Normal file
@ -0,0 +1,17 @@
|
|||||||
|
{
|
||||||
|
"eslint.workingDirectories": [
|
||||||
|
{
|
||||||
|
"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
|
||||||
|
}
|
||||||
|
}
|
Loading…
Reference in New Issue
Block a user