filesafe/.vscode/settings.json
Bobby Wibowo 09f51c8448
Updates~ 😉
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).
2018-04-19 04:00:36 +07:00

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
}