Fixed issue where the preview thumbnail was present while scrubbing

This commit is contained in:
Sam Potts
2019-02-24 12:10:20 +11:00
parent 215fc3677a
commit 4c3bf25b8a
24 changed files with 92 additions and 76 deletions

View File

@ -5,23 +5,16 @@
}
],
"settings": {
// Exclude from the editor
"files.exclude": {
"**/node_modules": true
},
// Exclude from search
"search.exclude": {
"dist/": true,
"demo/dist/": true
},
// Linting
"stylelint.enable": true,
"css.validate": false,
"scss.validate": false,
"javascript.validate.enable": false,
// Prettier
"prettier.eslintIntegration": true,
"prettier.stylelintIntegration": true,
// Formatting
"editor.tabSize": 4,
"editor.insertSpaces": true,
@ -29,6 +22,7 @@
"editor.codeActionsOnSave": {
"source.organizeImports": true
},
// Trim on save
"files.trimTrailingWhitespace": true
}