mirror of
https://github.com/BobbyWibowo/lolisafe.git
synced 2025-01-19 01:31:34 +00:00
2ce3c5f585
Removed .jsbeautifyrc in favor of using VSCode's workspace settings. The primary reason is that because I'm only using "michelemelluso.code-beautifier" extension for VSCode which I only intend to use with CSS files.
24 lines
630 B
JSON
24 lines
630 B
JSON
{
|
|
"beautify.tabSize": 2,
|
|
"beautify.options": {
|
|
"css": {
|
|
"indent_size": 2,
|
|
"indent_char": " "
|
|
}
|
|
},
|
|
"discord.enabled": true,
|
|
"editor.formatOnPaste": false,
|
|
"editor.formatOnSave": false,
|
|
"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
|
|
} |