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
1c-soft.1c-executor-plugin | |
1c-syntax.language-1c-bsl | |
adpyke.vscode-sql-formatter | |
akamud.vscode-theme-onedark | |
AlanWalk.markdown-toc | |
alefragnani.Bookmarks | |
alefragnani.pascal | |
alefragnani.pascal-formatter | |
alexcvzz.vscode-sqlite | |
alexkrechik.cucumberautocomplete |
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
{ | |
"swagger": "2.0", | |
"info": { | |
"description": "Authorization service", | |
"version": "сервис авторизации", | |
"title": "AuthorizationService", | |
"termsOfService": "" | |
}, | |
"host": "", | |
"basePath": "/auth", |
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
#!/bin/bash | |
docker login -u $DOCKER_LOGIN -p $DOCKER_PASSWORD $DOCKER_USERNAME | |
if [ $DOCKER_SYSTEM_PRUNE = 'true' ] ; then | |
docker system prune -af | |
fi | |
last_arg='.' | |
if [ $NO_CACHE = 'true' ] ; then |
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
{ | |
"$schema": "http://json-schema.org/draft-04/schema#", | |
"type": "object", | |
"properties": { | |
"serverId": { | |
"type": "string", | |
"description": "Unique ID of SonarQube connection" | |
}, | |
"projectKey": { | |
"type": "string", |
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
{ | |
"$schema": "http://json-schema.org/draft-04/schema#", | |
"type": "object", | |
"properties": { | |
"servers": { | |
"type": "array", | |
"items": { | |
"oneOf": [ | |
{ | |
"type": "object", |
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
{ | |
"$schema": "http://json-schema.org/draft-04/schema#", | |
"type": "object", | |
"title": "Root schema.", | |
"description": "An explanation about the purpose of this instance.", | |
"properties": { | |
"КаталогФич": { | |
"type": "string", | |
"title": "КаталогФич schema.", | |
"description": "An explanation about the purpose of this instance." |
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
Вот ссылка на видеозапись: | |
https://drive.google.com/open?id=0BzrHpvxfLxBibXkxQnQzdGhySU0 | |
TDD - https://ru.wikipedia.org/wiki/%D0%A0%D0%B0%D0%B7%D1%80%D0%B0%D0%B1%D0%BE%D1%82%D0%BA%D0%B0_%D1%87%D0%B5%D1%80%D0%B5%D0%B7_%D1%82%D0%B5%D1%81%D1%82%D0%B8%D1%80%D0%BE%D0%B2%D0%B0%D0%BD%D0%B8%D0%B5 | |
Example mapping - https://cucumber.io/blog/2015/12/08/example-mapping-introduction | |
BDD: | |
* wiki - https://en.wikipedia.org/wiki/Behavior-driven_development | |
* cucumber и gherkin - https://cucumber.io/ | |
* примеры и советы по написанию на gherkin - http://docs.behat.org/en/v3.0/guides/1.gherkin.html | |
Silverbulleters, LLC - http://silverbulleters.org/ |
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
atom.workspace.observeTextEditors (editor) -> | |
editor.onDidSave -> | |
if editor.getPath().slice(-3) is '.os' | |
if editor.getEncoding() is 'utf8' and editor.getText().charCodeAt(0) isnt 65279 | |
editor.setText String.fromCharCode(65279) + editor.getText() | |
editor.save() |