27 lines
796 B
JSON
27 lines
796 B
JSON
{
|
|
// Developer quality-of-life:
|
|
// If you add a DokuWiki checkout as ./_dokuwiki (see README), Intelephense will
|
|
// index it and resolve DokuWiki base classes (ActionPlugin, SyntaxPlugin, etc.).
|
|
"intelephense.environment.includePaths": [
|
|
"./_dokuwiki",
|
|
"./_dokuwiki/inc",
|
|
"./_dokuwiki/lib",
|
|
"./_dokuwiki/vendor"
|
|
],
|
|
|
|
// DokuWiki replaces @ini_* placeholders server-side.
|
|
// VS Code's CSS validator doesn't understand those tokens, but LESS does.
|
|
"files.associations": {
|
|
"style.css": "less",
|
|
"temp-input-colors.css": "less"
|
|
},
|
|
|
|
// Keep the file explorer tidy when the optional DokuWiki checkout exists.
|
|
"files.exclude": {
|
|
"**/_dokuwiki/.git": true,
|
|
"**/_dokuwiki/data": true,
|
|
"**/_dokuwiki/conf": true,
|
|
"**/_dokuwiki/cache": true
|
|
}
|
|
}
|