Skip to content

Commit

Permalink
Merge 705a1c2 into 229d99a
Browse files Browse the repository at this point in the history
  • Loading branch information
lucas-koehler committed Apr 6, 2023
2 parents 229d99a + 705a1c2 commit c635de3
Show file tree
Hide file tree
Showing 44 changed files with 3,419 additions and 995 deletions.
17 changes: 6 additions & 11 deletions .devcontainer/devcontainer.json
Expand Up @@ -11,18 +11,13 @@
},
// Set *default* container specific settings.json values on container create.
// Add the IDs of extensions you want installed when the container is created.
"extensions": [
"esbenp.prettier-vscode",
"ms-vscode.vscode-typescript-tslint-plugin",
"vue.volar"
],
"settings": {
"editor.formatOnSave": false,
"editor.defaultFormatter": "esbenp.prettier-vscode",
"prettier.jsxSingleQuote": true,
"prettier.singleQuote": true
"customizations": {
"extensions": [
"dbaeumer.vscode-eslint",
"esbenp.prettier-vscode",
"vue.volar"
]
},

// Use 'postCreateCommand' to run commands after the container is created.
"postCreateCommand": "npm ci && npm run init && npm run build",
// Comment out connect as root instead. More info: https://aka.ms/vscode-remote/containers/non-root.
Expand Down
2 changes: 0 additions & 2 deletions .prettierrc

This file was deleted.

6 changes: 6 additions & 0 deletions .prettierrc.js
@@ -0,0 +1,6 @@
module.exports = {
$schema: 'http://json.schemastore.org/prettierrc',
singleQuote: true,
jsxSingleQuote: true,
endOfLine: 'auto',
}
9 changes: 4 additions & 5 deletions .vscode/extensions.json
@@ -1,14 +1,13 @@
{
// See http://go.microsoft.com/fwlink/?LinkId=827846 to learn about workspace recommendations.
// Extension identifier format: ${publisher}.${name}. Example: vscode.csharp

// List of extensions which should be recommended for users of this workspace.
"recommendations": [
"DavidAnson.vscode-markdownlint",
"dbaeumer.vscode-eslint",
"esbenp.prettier-vscode",
"ms-vscode.vscode-typescript-tslint-plugin",
"ms-vscode-remote.remote-containers"

"ms-vscode-remote.remote-containers",
],
// List of extensions recommended by VS Code that should not be recommended for users of this workspace.
"unwantedRecommendations": []
}
}
49 changes: 46 additions & 3 deletions .vscode/settings.json
@@ -1,6 +1,49 @@
{
"editor.formatOnSave": false,
"editor.formatOnSave": true,
"editor.defaultFormatter": "esbenp.prettier-vscode",
"eslint.validate": [
"javascript",
"javascriptreact",
"typescript",
"typescriptreact",
"vue"
],
"[javascript]": {
"editor.defaultFormatter": "esbenp.prettier-vscode",
"prettier.jsxSingleQuote": true,
"prettier.singleQuote": true
"editor.codeActionsOnSave": {
"source.fixAll.eslint": true
},
},
"[javascriptreact]": {
"editor.defaultFormatter": "esbenp.prettier-vscode",
"editor.codeActionsOnSave": {
"source.fixAll.eslint": true
},
},
"[json]": {
"editor.defaultFormatter": "esbenp.prettier-vscode",
},
"[typescript]": {
"editor.defaultFormatter": "esbenp.prettier-vscode",
"editor.codeActionsOnSave": {
"source.fixAll.eslint": true
},
},
"[typescriptreact]": {
"editor.defaultFormatter": "esbenp.prettier-vscode",
"editor.codeActionsOnSave": {
"source.fixAll.eslint": true
},
},
"[vue]": {
"editor.defaultFormatter": "esbenp.prettier-vscode",
"editor.codeActionsOnSave": {
"source.fixAll.eslint": true
},
},
"search.exclude": {
"**/docs": true,
"**/node_modules": true,
"**/lib": true
},
}

0 comments on commit c635de3

Please sign in to comment.