-
-
Notifications
You must be signed in to change notification settings - Fork 1
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Added information on documentation
- Loading branch information
ADMSK\AVROGAL1
committed
Mar 17, 2021
0 parents
commit 8636665
Showing
156 changed files
with
28,965 additions
and
0 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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,44 @@ | ||
{ | ||
"projectName": "stylegrams", | ||
"projectOwner": "AlexRogalskiy", | ||
"repoType": "github", | ||
"repoHost": "https://github.com", | ||
"files": [ | ||
"README.md" | ||
], | ||
"types": { | ||
"marketing": { | ||
"symbol": "💌", | ||
"description": "Marketing - People who help in marketing the repo/project" | ||
} | ||
}, | ||
"imageSize": 100, | ||
"commit": true, | ||
"contributorsPerLine": 5, | ||
"contributors": [ | ||
{ | ||
"login": "AlexRogalskiy", | ||
"name": "Alex Rogalskiy", | ||
"avatar_url": "https://avatars3.githubusercontent.com/u/3901898", | ||
"profile": "https://github.com/AlexRogalskiy", | ||
"contributions": [ | ||
"code", | ||
"design", | ||
"doc", | ||
"ideas", | ||
"infra", | ||
"maintenance", | ||
"test" | ||
] | ||
}, | ||
{ | ||
"login": "RenovateBot", | ||
"name": "Renovate Bot", | ||
"avatar_url": "https://avatars1.githubusercontent.com/u/25180681", | ||
"profile": "https://github.com/renovate-bot", | ||
"contributions": [ | ||
"maintenance" | ||
] | ||
} | ||
] | ||
} |
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 |
---|---|---|
@@ -0,0 +1,13 @@ | ||
{ | ||
"members":[ | ||
{ | ||
"login":"AlexRogalskiy", | ||
"avatar_url":"https://avatars3.githubusercontent.com/u/3901898", | ||
"url":"https://github.com/AlexRogalskiy", | ||
"blog":"", | ||
"name":"Alexander Rogalskiy", | ||
"bio":"Design Systems and UI Engineer", | ||
"location":"Saint-Petersburg, Russia" | ||
} | ||
] | ||
} |
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 |
---|---|---|
@@ -0,0 +1,23 @@ | ||
{ | ||
"individuals":[ | ||
{ | ||
"MemberId":3901898, | ||
"createdAt":"2019-09-07 09:53", | ||
"type":"USER", | ||
"role":"ADMIN", | ||
"isActive":true, | ||
"totalAmountDonated":0, | ||
"lastTransactionAt":"2020-12-07 16:17", | ||
"lastTransactionAmount":0, | ||
"profile":"https://opencollective.com/nullables", | ||
"name":"Alexander Rogalskiy", | ||
"company":"Nullables.io", | ||
"description":null, | ||
"image":"/avatars/3901898.jpg", | ||
"email":null, | ||
"twitter":null, | ||
"github":"https://github.com/AlexRogalskiy", | ||
"website":"https://github.com/AlexRogalskiy" | ||
} | ||
] | ||
} |
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 |
---|---|---|
@@ -0,0 +1,41 @@ | ||
# To get started with Dependabot version updates, you'll need to specify which | ||
# package ecosystems to update and where the package manifests are located. | ||
# Please see the documentation for all configuration options: | ||
# https://help.github.com/github/administering-a-repository/configuration-options-for-dependency-updates | ||
version: 1 | ||
|
||
update_configs: | ||
# Keep package.json (& lockfiles) up to date as soon as | ||
# new versions are published to the npm registry | ||
- package_manager: "javascript" | ||
directory: "/" | ||
update_schedule: "live" | ||
allowed_updates: | ||
- match: | ||
dependency_type: "development" | ||
# Supported dependency types: | ||
# - "development" | ||
# Development dependency group (supported by some package managers) | ||
# - "production" | ||
# Production dependency group (supported by some package managers) | ||
# - "direct" | ||
# Direct/top-level dependencies | ||
# - "indirect" | ||
# Indirect/transient/sub-dependencies | ||
# - "all" | ||
update_type: "all" | ||
# Supported update types: | ||
# - "security" | ||
# - "all" | ||
- match: | ||
dependency_type: "production" | ||
update_type: "security" | ||
|
||
# Keep Dockerfile up to date, batching pull requests weekly | ||
- package_manager: "docker" | ||
directory: "/" | ||
update_schedule: "daily" | ||
|
||
- package_manager: "python" | ||
directory: "/" | ||
update_schedule: "weekly" |
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 |
---|---|---|
@@ -0,0 +1,31 @@ | ||
# http://editorconfig.org | ||
root = true | ||
|
||
[*] | ||
indent_size = 2 | ||
# Possible values - tab, space | ||
indent_style = space | ||
# Possible values - lf, crlf, cr | ||
end_of_line = lf | ||
# Possible values - latin1, utf-8, utf-16be, utf-16le | ||
charset = utf-8 | ||
insert_final_newline = true | ||
trim_trailing_whitespace = true | ||
max_line_length = 120 | ||
|
||
[*.{js, ts}] | ||
indent_size = 4 | ||
max_line_length = 100 | ||
|
||
[*.{yml, yaml}] | ||
indent_size = 2 | ||
|
||
[*.{html, xml, json}] | ||
indent_size = 4 | ||
|
||
[*.{css, scss}] | ||
indent_size = 4 | ||
|
||
[*.{md, markdown}] | ||
max_line_length = off | ||
trim_trailing_whitespace = false |
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 |
---|---|---|
@@ -0,0 +1,11 @@ | ||
{ | ||
"dev": { | ||
"DEBUG": "true" | ||
}, | ||
"prod": { | ||
"DEBUG": "false" | ||
}, | ||
"test": { | ||
"TZ": "utc" | ||
} | ||
} |
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 |
---|---|---|
@@ -0,0 +1,6 @@ | ||
dist/ | ||
lib/ | ||
node_modules/ | ||
coverage/ | ||
tests/ | ||
docs/ |
Oops, something went wrong.