-
Notifications
You must be signed in to change notification settings - Fork 5
/
Copy pathnajs-eloquent.code-workspace
67 lines (67 loc) · 1.67 KB
/
najs-eloquent.code-workspace
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
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
{
"folders": [
{
"name": "Najs Eloquent",
"path": "./"
}
],
"extensions": {
"recommendations": [
"eg2.tslint",
"k--kato.intellij-idea-keybindings",
"steoates.autoimport",
"esbenp.prettier-vscode",
"streetsidesoftware.code-spell-checker",
"msjsdiag.debugger-for-chrome",
"PeterJausovec.vscode-docker",
"alefragnani.bookmarks",
"donjayamanne.githistory",
"xabikos.javascriptsnippets",
"Shan.code-settings-sync",
"robertohuertasm.vscode-icons",
"wayou.vscode-todo-highlight"
]
},
"settings": {
"editor.tabSize": 2,
"editor.codeLens": false,
"editor.formatOnSave": true,
"editor.rulers": [120],
"editor.tabCompletion": true,
"typescript.referencesCodeLens.enabled": true,
"tslint.ignoreDefinitionFiles": false,
"tslint.autoFixOnSave": true,
"tslint.exclude": "**/node_modules/**/*",
"emmet.showExpandedAbbreviation": "never",
"prettier.semi": false,
"prettier.singleQuote": true,
"prettier.tabWidth": 2,
"prettier.printWidth": 120,
"prettier.ignorePath": ".prettierignore",
"terminal.integrated.fontFamily": "Meslo LG M for Powerline",
"terminal.integrated.fontSize": 12,
"cSpell.words": [
"najs",
"autoload",
"overridable",
"Mailjet",
"Queueable",
"deserialize",
"timestamps",
"mutators",
"proxify",
"proxied",
"chainable",
"bson"
],
"search.exclude": {
"**/.git": true,
"**/node_modules": true,
"**/bower_components": true
},
"files.exclude": {
"**/examples": true,
"**/node_modules": true
}
}
}