Skip to content

Commit

Permalink
docs: updates on workflows
Browse files Browse the repository at this point in the history
Added information on documentation
  • Loading branch information
ADMSK\AVROGAL1 committed Mar 17, 2021
0 parents commit 8636665
Show file tree
Hide file tree
Showing 156 changed files with 28,965 additions and 0 deletions.
44 changes: 44 additions & 0 deletions .all-contributorsrc
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"
]
}
]
}
13 changes: 13 additions & 0 deletions .all-membersrc
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"
}
]
}
23 changes: 23 additions & 0 deletions .all-sponsorsrc
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"
}
]
}
41 changes: 41 additions & 0 deletions .dependabot/config.yml
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"
31 changes: 31 additions & 0 deletions .editorconfig
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
11 changes: 11 additions & 0 deletions .env-cmdrc.json
Original file line number Diff line number Diff line change
@@ -0,0 +1,11 @@
{
"dev": {
"DEBUG": "true"
},
"prod": {
"DEBUG": "false"
},
"test": {
"TZ": "utc"
}
}
6 changes: 6 additions & 0 deletions .eslintignore
Original file line number Diff line number Diff line change
@@ -0,0 +1,6 @@
dist/
lib/
node_modules/
coverage/
tests/
docs/
Loading

0 comments on commit 8636665

Please sign in to comment.