Skip to content

Commit 8600695

Browse files
authored
Add files via upload
1 parent 41e7715 commit 8600695

20 files changed

+28160
-0
lines changed

content/.env.default

Lines changed: 18 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,18 @@
1+
# Default config for the open source checks in tools/checks
2+
# Create a file named .env in the same directory to override these defaults
3+
BASE_BRANCH='origin/main'
4+
CHECK_HTTP_LINKS=true
5+
CHECK_LOCALIZED_CONTENT=false
6+
CHECK_MARKDOWN_LINT=true
7+
CHECK_PROTECTED_FIELDS=true
8+
CHECK_RELATIVE_LINKS=true
9+
CHECK_RETEXT_ANALYSIS=true
10+
CHECK_UNUSED_ASSETS=true
11+
COMMIT_HASH=''
12+
DEBUG=false
13+
DELETE_UNUSED_ASSETS=false
14+
FILES='changed'
15+
ONLY_REQUIRED_CHECKS=false
16+
POST_PULL_REQUEST_COMMENTS=false
17+
PULL_REQUEST_NUMBER=0
18+
REPOSITORY=''

content/.gitattributes

Lines changed: 16 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,16 @@
1+
content/de-de/assets/** filter=lfs diff=lfs merge=lfs -text
2+
content/en-us/assets/** filter=lfs diff=lfs merge=lfs -text
3+
content/es-es/assets/** filter=lfs diff=lfs merge=lfs -text
4+
content/fr-fr/assets/** filter=lfs diff=lfs merge=lfs -text
5+
content/ja-jp/assets/** filter=lfs diff=lfs merge=lfs -text
6+
content/ko-kr/assets/** filter=lfs diff=lfs merge=lfs -text
7+
content/pt-br/assets/** filter=lfs diff=lfs merge=lfs -text
8+
content/ru-ru/assets/** filter=lfs diff=lfs merge=lfs -text
9+
content/zh-cn/assets/** filter=lfs diff=lfs merge=lfs -text
10+
content/zh-tw/assets/** filter=lfs diff=lfs merge=lfs -text
11+
12+
# Git will always convert line endings to LF on checkout
13+
* text eol=lf
14+
15+
# But treat tarballs as binary (no line ending conversion)
16+
*.tgz binary

content/.gitignore

Lines changed: 8 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,8 @@
1+
# Folders
2+
**/node_modules/
3+
**output/
4+
**dist/
5+
6+
# Files
7+
.DS_Store
8+
**.env

content/.markdownlint.json

Lines changed: 57 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,57 @@
1+
{
2+
"MD001": true,
3+
"MD003": {
4+
"style": "atx"
5+
},
6+
"MD004": {
7+
"style": "dash"
8+
},
9+
"MD005": true,
10+
"MD007": true,
11+
"MD009": true,
12+
"MD010": false,
13+
"MD011": false,
14+
"MD012": true,
15+
"MD013": false,
16+
"MD014": true,
17+
"MD018": true,
18+
"MD019": true,
19+
"MD020": true,
20+
"MD021": true,
21+
"MD023": true,
22+
"MD024": false,
23+
"MD025": true,
24+
"MD026": true,
25+
"MD027": true,
26+
"MD028": true,
27+
"MD029": true,
28+
"MD030": false,
29+
"MD031": true,
30+
"MD032": true,
31+
"MD033": false,
32+
"MD034": true,
33+
"MD035": {
34+
"style": "---"
35+
},
36+
"MD036": false,
37+
"MD037": false,
38+
"MD038": true,
39+
"MD039": true,
40+
"MD040": true,
41+
"MD042": true,
42+
"MD045": false,
43+
"MD046": false,
44+
"MD047": true,
45+
"MD048": {
46+
"style": "backtick"
47+
},
48+
"MD049": {
49+
"style": "underscore"
50+
},
51+
"MD050": {
52+
"style": "asterisk"
53+
},
54+
"MD051": true,
55+
"MD052": true,
56+
"MD053": true
57+
}

content/.npmrc

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1 @@
1+
registry=https://registry.npmjs.org/

content/.nvmrc

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1 @@
1+
v22.10.0

content/.prettierignore

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1 @@
1+
**/node_modules

content/.prettierrc.json

Lines changed: 14 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,14 @@
1+
{
2+
"arrowParens": "always",
3+
"bracketSameLine": true,
4+
"bracketSpacing": true,
5+
"endOfLine": "auto",
6+
"jsxSingleQuote": true,
7+
"printWidth": 80,
8+
"proseWrap": "preserve",
9+
"semi": true,
10+
"singleQuote": true,
11+
"tabWidth": 2,
12+
"trailingComma": "es5",
13+
"useTabs": false
14+
}

content/CODEOWNERS

Lines changed: 8 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,8 @@
1+
* @Roblox/creator-knowledge
2+
3+
/content/ @Roblox/documentation
4+
/STYLE.md @Roblox/documentation
5+
/content/en-us/education/ @Roblox/documentation @Roblox/education
6+
/content/en-us/assets/education/ @Roblox/documentation @Roblox/education
7+
/tools/checks/utils/allowedHttpLinks.txt @Roblox/creator-knowledge @Roblox/documentation @Roblox/education
8+
/tools/checks/utils/do-not-machine-translate.txt @Roblox/creator-knowledge @Roblox/documentation @Roblox/education

content/CODE_OF_CONDUCT.md

Lines changed: 82 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,82 @@
1+
# Contributor Covenant Code of Conduct
2+
3+
## Our Pledge
4+
5+
We as members, contributors, and leaders pledge to make participation in our
6+
community a harassment-free experience for everyone, regardless of age, body
7+
size, visible or invisible disability, ethnicity, sex characteristics, gender
8+
identity and expression, level of experience, education, socio-economic status,
9+
nationality, personal appearance, race, caste, color, religion, or sexual
10+
identity and orientation.
11+
12+
We pledge to act and interact in ways that contribute to an open, welcoming,
13+
diverse, inclusive, and healthy community.
14+
15+
## Our Standards
16+
17+
Examples of behavior that contributes to a positive environment for our
18+
community include:
19+
20+
- Demonstrating empathy and kindness toward other people
21+
- Being respectful of differing opinions, viewpoints, and experiences
22+
- Giving and gracefully accepting constructive feedback
23+
- Accepting responsibility and apologizing to those affected by our mistakes,
24+
and learning from the experience
25+
- Focusing on what is best not just for us as individuals, but for the overall
26+
community
27+
28+
Examples of unacceptable behavior include:
29+
30+
- The use of sexualized language or imagery, and sexual attention or advances of
31+
any kind
32+
- Trolling, insulting or derogatory comments, and personal or political attacks
33+
- Public or private harassment
34+
- Publishing others' private information, such as a physical or email address,
35+
without their explicit permission
36+
- Other conduct which could reasonably be considered inappropriate in a
37+
professional setting
38+
39+
## Enforcement Responsibilities
40+
41+
Community leaders are responsible for clarifying and enforcing our standards of
42+
acceptable behavior and will take appropriate and fair corrective action in
43+
response to any behavior that they deem inappropriate, threatening, offensive,
44+
or harmful.
45+
46+
Community leaders have the right and responsibility to remove, edit, or reject
47+
comments, commits, code, wiki edits, issues, and other contributions that are
48+
not aligned to this Code of Conduct, and will communicate reasons for moderation
49+
decisions when appropriate.
50+
51+
## Scope
52+
53+
This Code of Conduct applies within all community spaces, and also applies when
54+
an individual is officially representing the community in public spaces.
55+
Examples of representing our community include using an official e-mail address,
56+
posting via an official social media account, or acting as an appointed
57+
representative at an online or offline event.
58+
59+
## Enforcement
60+
61+
Instances of abusive, harassing, or otherwise unacceptable behavior may be
62+
reported to the community leaders responsible for enforcement using GitHub's
63+
**Report content** form. All complaints will be reviewed and investigated
64+
promptly and fairly.
65+
66+
All community leaders are obligated to respect the privacy and security of the
67+
reporter of any incident.
68+
69+
## Attribution
70+
71+
This Code of Conduct is adapted from the [Contributor Covenant][homepage],
72+
version 2.1, available at
73+
[https://www.contributor-covenant.org/version/2/1/code_of_conduct.html][v2.1].
74+
75+
For answers to common questions about this code of conduct, see the FAQ at
76+
[https://www.contributor-covenant.org/faq][faq]. Translations are available at
77+
[https://www.contributor-covenant.org/translations][translations].
78+
79+
[homepage]: https://www.contributor-covenant.org
80+
[v2.1]: https://www.contributor-covenant.org/version/2/1/code_of_conduct.html
81+
[faq]: https://www.contributor-covenant.org/faq
82+
[translations]: https://www.contributor-covenant.org/translations

0 commit comments

Comments
 (0)