-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
fix(sentry-plugin): use package version from env variables instead of…
… package.json
- Loading branch information
1 parent
f315d97
commit bd3db57
Showing
10 changed files
with
103 additions
and
172 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,37 +1,48 @@ | ||
{ | ||
"auto-close-tag.enableAutoCloseSelfClosingTag": true, | ||
"auto-close-tag.activationOnLanguage": ["xml", "vue", "HTML (Eex)"], | ||
"editor.rulers": [120], | ||
"editor.formatOnSave": false, | ||
"eslint.trace.server": "messages", | ||
"eslint.validate": [ | ||
"vue", "html", "typescript", "javascript", "json", "php", "scss", "md" | ||
], | ||
"vetur.validation.template": false, | ||
"javascript.preferences.quoteStyle": "single", | ||
"typescript.preferences.quoteStyle": "single", | ||
"eslint.enable": true, | ||
|
||
"scss.validate": false, | ||
"[scss]": { | ||
"editor.formatOnSave": false, | ||
}, | ||
"[php]": { | ||
"editor.formatOnSave": true, | ||
"editor.defaultFormatter": "bmewburn.vscode-intelephense-client", | ||
"editor.quickSuggestions": { | ||
"comments": true | ||
} | ||
}, | ||
"[markdown]": { | ||
"editor.formatOnSave": true, | ||
"editor.defaultFormatter": "esbenp.prettier-vscode" | ||
}, | ||
"importCost.typescriptExtensions": ["\\.tsx?$", "\\.vue$"], | ||
"editor.codeActionsOnSave": { | ||
"source.fixAll.eslint": true, | ||
"source.fixAll.stylelint": true | ||
}, | ||
"git.inputValidationLength": 82, | ||
"git.inputValidationSubjectLength": 82 | ||
"auto-close-tag.enableAutoCloseSelfClosingTag": true, | ||
"auto-close-tag.activationOnLanguage": [ | ||
"xml", | ||
"vue", | ||
"HTML (Eex)" | ||
], | ||
"editor.rulers": [ | ||
120 | ||
], | ||
"editor.formatOnSave": false, | ||
"eslint.trace.server": "messages", | ||
"eslint.validate": [ | ||
"vue", | ||
"html", | ||
"typescript", | ||
"javascript" | ||
], | ||
"vetur.validation.template": false, | ||
"javascript.preferences.quoteStyle": "single", | ||
"typescript.preferences.quoteStyle": "single", | ||
"eslint.enable": true, | ||
"scss.validate": false, | ||
"[scss]": { | ||
"editor.formatOnSave": false | ||
}, | ||
"[php]": { | ||
"editor.formatOnSave": true, | ||
"editor.defaultFormatter": "bmewburn.vscode-intelephense-client", | ||
"editor.quickSuggestions": { | ||
"comments": true | ||
} | ||
}, | ||
"[markdown]": { | ||
"editor.formatOnSave": true, | ||
"editor.defaultFormatter": "esbenp.prettier-vscode" | ||
}, | ||
"importCost.typescriptExtensions": [ | ||
"\\.tsx?$", | ||
"\\.vue$" | ||
], | ||
"editor.codeActionsOnSave": { | ||
"source.fixAll.eslint": true, | ||
"source.fixAll.stylelint": true | ||
}, | ||
"git.inputValidationLength": 82, | ||
"git.inputValidationSubjectLength": 82 | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Oops, something went wrong.