mirror of
https://github.com/TryGhost/Ghost.git
synced 2025-01-20 22:42:53 -05:00
bc23285c55
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
17 lines
No EOL
324 B
JSON
17 lines
No EOL
324 B
JSON
{
|
|
"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
|
|
}
|
|
} |