forked from oddbird/Metecho
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathdevcontainer.json
141 lines (141 loc) · 3.76 KB
/
devcontainer.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
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
// See https://aka.ms/vscode-remote/devcontainer.json for format details.
{
"name": "Metecho",
"dockerComposeFile": ["../docker-compose.yml", "./docker-compose.dev.yml"],
"service": "web",
"workspaceFolder": "/app",
"shutdownAction": "stopCompose",
"extensions": [
"bibhasdn.django-html",
"csstools.postcss",
"dbaeumer.vscode-eslint",
"esbenp.prettier-vscode",
"formulahendry.auto-rename-tag",
"jounqin.vscode-mdx",
"ms-azuretools.vscode-docker",
"ms-python.python",
"ms-python.vscode-pylance",
"ms-vscode.sublime-keybindings",
"naumovs.color-highlight",
"stkb.rewrap",
"stylelint.vscode-stylelint",
"syler.sass-indented",
"tyriar.sort-lines",
"wholroyd.jinja",
"xabikos.javascriptsnippets"
],
"settings": {
"terminal.integrated.profiles.linux": {
"bash": {
"path": "/bin/bash"
}
},
"terminal.integrated.defaultProfile.linux": "bash",
"editor.bracketPairColorization.enabled": true,
"editor.codeActionsOnSave": {
"source.fixAll.eslint": true
},
"editor.defaultFormatter": "esbenp.prettier-vscode",
"editor.detectIndentation": false,
"editor.formatOnSave": true,
"editor.insertSpaces": true,
"editor.tabSize": 2,
"eslint.options": {
"extensions": [".js", ".jsx", ".md", ".mdx", ".ts", ".tsx"]
},
"files.eol": "\n",
"files.insertFinalNewline": true,
"files.trimFinalNewlines": true,
"files.trimTrailingWhitespace": true,
"javascript.suggestionActions.enabled": false,
"typescript.preferences.quoteStyle": "single",
"npm.packageManager": "yarn",
"python.formatting.provider": "black",
"python.formatting.blackPath": "black",
"python.languageServer": "Pylance",
"python.linting.flake8Enabled": true,
"python.linting.pylintEnabled": false,
"python.pythonPath": "/usr/local/bin/python",
"python.showStartPage": false,
"remote.extensionKind": {
"ms-azuretools.vscode-docker": "workspace"
},
"typescript.tsdk": "node_modules/typescript/lib",
"[javascript]": {
"editor.rulers": [80]
},
"[restructuredtext]": {
"editor.rulers": [80]
},
"[markdown]": {
"editor.rulers": [80]
},
"[mdx]": {
"editor.rulers": [80]
},
"[html]": {
"editor.formatOnSave": false
},
"[javascriptreact]": {
"editor.rulers": [80]
},
"[typescript]": {
"editor.rulers": [80]
},
"[typescriptreact]": {
"editor.rulers": [80]
},
"[python]": {
"editor.rulers": [88],
"editor.tabSize": 4,
"editor.defaultFormatter": "ms-python.python",
"editor.codeActionsOnSave": {
"source.organizeImports": true
}
},
"[scss]": {
"editor.rulers": [80],
"editor.codeActionsOnSave": {
"source.fixAll.stylelint": true
}
},
"files.exclude": {
"**/.git": true,
"**/.svn": true,
"**/.hg": true,
"**/CVS": true,
"**/.DS_Store": true,
"**/*.pyc": true,
"**/*.pyo": true,
"jscov_temp": true,
"jscache": true,
"__pycache__": true,
".coverage": true,
"coverage": true,
"htmlcov": true,
"pycov": true,
".tags": true,
".cache": true,
".pytest_cache": true,
".vscode": true,
"jscov": true,
".nyc_output": true,
"collected-assets": true,
"staticfiles": true,
"**/*.egg-info": true
},
"search.exclude": {
"**/node_modules": true,
"**/bower_components": true,
"**/*.css.map": true,
"**/*.js.map": true,
"npm-shrinkwrap.json": true,
"yarn.lock": true,
"package-lock.json": true,
"npm-debug.log": true,
"yarn-debug.log": true,
"yarn-error.log": true,
"static/styles": true
}
}
}