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": "https://gist.githubusercontent.com/anreton/fb0d79641b820a1873b5d1d48f17b38e/raw/structurizr-theme.schema.json", | |
"name": "Anreton", | |
"description": "Structurizr Theme.", | |
"elements": [ | |
{ | |
"tag": "message-broker", | |
"shape": "Pipe", | |
"background": "#ffd900" | |
} |
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": "https://json-schema.org/draft-07/schema#", | |
"$id": "https://gist.github.com/anreton/fb0d79641b820a1873b5d1d48f17b38e", | |
"title": "Structurizr Theme JSON Schema", | |
"description": "JSON Schema for Structurizr Theme.", | |
"type": "object", | |
"properties": { | |
"name": { | |
"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
<?xml version="1.0" encoding="utf-8"?> | |
<AnalysisInput xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xmlns:xsd="http://www.w3.org/2001/XMLSchema"> | |
<Settings> | |
<Setting> | |
<Key>sonar.cs.analyzeGeneratedCode</Key> | |
<Value>false</Value> | |
</Setting> | |
<Setting> | |
<Key>sonar.cs.file.suffixes</Key> | |
<Value>.cs</Value> |
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": "https://raw.githubusercontent.com/DotNetAnalyzers/StyleCopAnalyzers/master/StyleCop.Analyzers/StyleCop.Analyzers/Settings/stylecop.schema.json", | |
"settings": { | |
"documentationRules": { | |
"companyName": "Anton Egorov ([email protected])", | |
"copyrightText": "", | |
"documentationCulture": "en-US", | |
"documentExposedElements": true, | |
"documentInterfaces": true, | |
"documentInternalElements": true, |
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
# Remove the line below if you want to inherit .editorconfig settings from higher directories | |
root = true | |
# C# files | |
[*.cs] | |
#### Core EditorConfig Options #### | |
# Indentation and spacing | |
indent_size = 4 |
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
git config --global alias.hist "log --graph --date=format:'%Y-%m-%d %H:%M:%S' --pretty=format:'%C(red)%h%Creset%C(yellow)%d%Creset %C(white)%s%Creset %C(green)(%ad, %cr)%Creset %C(magenta)<%an - %ae>%Creset'" |