mirror of
https://github.com/BobbyWibowo/lolisafe.git
synced 2024-12-14 08:26:22 +00:00
09f51c8448
Thanks to Zephyrrus for the hints about nunjucks, sort of (he did not really give out any specific hints to me, I stalked his fork, lmao). * Replaced Handlebars with Nunjucks. * Replaced all static HTML files with their NJK-equivalent (excluding error pages). * Renamed "albumDomain" to "homeDomain" in config.sample.js (make sure you update your config.js too). * Updated dependencies: knex and eslint-plugin-import (dev). * Updated vscode's settings.json (I may update this again very soon).
32 lines
770 B
JSON
32 lines
770 B
JSON
{
|
|
"beautify.ignore": [
|
|
"**/*.js"
|
|
],
|
|
"beautify.language": {
|
|
"js": {},
|
|
"css": [
|
|
"css",
|
|
"scss"
|
|
],
|
|
"html": [
|
|
"htm",
|
|
"html",
|
|
"njk" // this probably does not even work
|
|
]
|
|
},
|
|
"discord.enabled": true,
|
|
"editor.formatOnPaste": false,
|
|
"editor.formatOnSave": true,
|
|
"editor.rulers": [
|
|
120
|
|
],
|
|
"editor.wordWrapColumn": 120,
|
|
"editor.wordWrap": "bounded",
|
|
"editor.wrappingIndent": "indent",
|
|
"eslint.enable": true,
|
|
"eslint.autoFixOnSave": true,
|
|
"javascript.format.enable": false,
|
|
"javascript.suggestionActions.enabled": false,
|
|
"javascript.validate.enable": false,
|
|
"npm-intellisense.importES6": false
|
|
} |