-
Notifications
You must be signed in to change notification settings - Fork 21
/
settings.json
49 lines (44 loc) · 1.32 KB
/
settings.json
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
// Place your settings in this file to overwrite the default settings
{
"terminal.integrated.fontFamily": "DejaVuSansMonoForPowerline NF",
"terminal.integrated.fontSize": 16,
"window.zoomLevel": 1,
"editor.fontFamily": "DejaVuSansMonoForPowerline NF",
"editor.fontSize": 19,
"editor.fontLigatures": true,
// Fix the bug on Blade Not Highlighting pair html tag
"files.associations": {
"*.vue": "vue",
"*.blade.php": "html"
},
"emmet.syntaxProfiles": {
// I disable Blade Since im Using Vue Template
"blade": "html",
"vue-html": "html"
},
// Add the Following In Your Packages.json to use this
// "babel-eslint"
// "eslint":
// "eslint-config-standard"
// "eslint-plugin-html"
"eslint.validate": [ "javascript", "javascriptreact", { "language": "html", "autoFix": true } ],
"workbench.iconTheme": null,
// Auto rename HTML tags
"auto-rename-tag.activationOnLanguage": [
"html",
"xml",
"php",
"javascript",
"blade"
],
// Exclude Vendor Folders During Search and Replace
"files.watcherExclude": {
"**/vendor/**": true
},
"search.exclude": {
"**/vendor/**": true
},
"stylelint.enable": true,
"css.validate": false,
"eslint.autoFixOnSave": true
}