Skip to content

Commit c68c62f

Browse files
committedAug 24, 2021
chore: add commitlint & package infos
1 parent 22136d9 commit c68c62f

11 files changed

+1526
-0
lines changed
 

‎.gitignore

+55
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,55 @@
1+
.DS_Store
2+
3+
# Logs
4+
logs
5+
*.log
6+
npm-debug.log*
7+
yarn-debug.log*
8+
yarn-error.log*
9+
lerna-debug.log*
10+
11+
# Diagnostic reports (https://nodejs.org/api/report.html)
12+
report.[0-9]*.[0-9]*.[0-9]*.[0-9]*.json
13+
14+
# Runtime data
15+
pids
16+
*.pid
17+
*.seed
18+
*.pid.lock
19+
20+
# Directory for instrumented libs generated by jscoverage/JSCover
21+
lib-cov
22+
23+
# Coverage directory used by tools like istanbul
24+
coverage
25+
*.lcov
26+
27+
# Bower dependency directory (https://bower.io/)
28+
bower_components
29+
30+
# Compiled binary addons (https://nodejs.org/api/addons.html)
31+
build/Release
32+
33+
# Dependency directories
34+
node_modules/
35+
jspm_packages/
36+
37+
# Optional npm cache directory
38+
.npm
39+
40+
# Optional eslint cache
41+
.eslintcache
42+
43+
# Optional REPL history
44+
.node_repl_history
45+
46+
# Output of 'npm pack'
47+
*.tgz
48+
!./vendor/*.tgz
49+
50+
# Yarn Integrity file
51+
.yarn-integrity
52+
53+
# dotenv environment variables file
54+
.env
55+
.env.test

‎.husky/.gitignore

+1
Original file line numberDiff line numberDiff line change
@@ -0,0 +1 @@
1+
_

‎.husky/commit-msg

+4
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,4 @@
1+
#!/bin/sh
2+
. "$(dirname "$0")/_/husky.sh"
3+
4+
yarn commitlint -e

‎.husky/pre-commit

+4
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,4 @@
1+
#!/bin/sh
2+
. "$(dirname "$0")/_/husky.sh"
3+
4+
yarn lint-staged

‎.prettierignore

+4
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,4 @@
1+
node_modules/
2+
package.json
3+
yarn.lock
4+
*.mdx

‎.prettierrc

+6
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,6 @@
1+
{
2+
"singleQuote": true,
3+
"trailingComma": "all",
4+
"semi": false,
5+
"arrowParens": "avoid",
6+
}

‎README.md

+12
Original file line numberDiff line numberDiff line change
@@ -45,3 +45,15 @@ If you use markdown files, you should read about what frontmatters are.
4545
This section shows code details listed in a full page.
4646

4747
[See the full Components page](https://scaleway-docs.s3-website.fr-par.scw.cloud/components/) where our page components code is explained in detail.
48+
49+
## License
50+
51+
Under [CC-BY-NC-SA-4.0](https://fr.wikipedia.org/wiki/Licence_Creative_Commons).
52+
53+
- CC: Creative Commons
54+
- BY: Attribution
55+
- The licensor permits others to copy, distribute, display, and perform the work. In return, licenses must give the original author credit.
56+
- NC: Non Commercial
57+
- The licensor permits others to copy, distribute, display, and perform the work. In return, licenses may not use the work for commercial purposes -- unless they get the licensor's permission.
58+
- SA: Share Alike
59+
- The licensor permits others to distribute derivative works only under a license identical to the one that governs the licensor's work.

‎commitlint.config.js

+1
Original file line numberDiff line numberDiff line change
@@ -0,0 +1 @@
1+
module.exports = { extends: ['@commitlint/config-conventional'] }

‎docs/CONTRIBUTING.md

+35
Original file line numberDiff line numberDiff line change
@@ -26,6 +26,41 @@ Any PRs which do not comply with the rules below will be rejected.
2626

2727
---
2828

29+
## Commit conventions
30+
31+
This project use [conventionalcommits](https://www.conventionalcommits.org/en/v1.0.0/) based on [Angular convention](https://github.com/angular/angular/blob/22b96b9/CONTRIBUTING.md#-commit-message-guidelines).
32+
33+
Here is a commit template exemple:
34+
35+
`type(module): description with some words PROJECT-XXX`
36+
37+
Lowercase only, `(module)` is optional. Project number at the end is recommended.
38+
39+
Here is the list of `type` to use (commons in bold)
40+
41+
- `docs`
42+
- _Do not use other than **project docs** itself concerns (like README file)_
43+
- `feat`
44+
- _Add new materials (page, sections, …)_
45+
- `fix`
46+
- _For instance, fix typos, images, …_
47+
- `refactor`
48+
- _In rare cases, for instance if you have to change folders structures._
49+
- `revert`
50+
- _Oops case, if you want to redo previous history state_
51+
- `style`
52+
- _For simple format changes that are not content changes_
53+
54+
### examples
55+
56+
`feat(console): add vpc how-to page MTA-2342`
57+
58+
`fix(iot): wrong image in quickstart`
59+
60+
`style: add bold at scaleway name occurences MTA-1337`
61+
62+
---
63+
2964
## Markdown
3065

3166
Markdown is a lightweight markup language for creating formatted text using a plain-text editor.

‎package.json

+32
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,32 @@
1+
{
2+
"name": "docs-content",
3+
"description": "Markdown contents submodule for Scaleway docs website.",
4+
"version": "0.1.0",
5+
"license": "CC-BY-NC-SA-4.0",
6+
"private": true,
7+
"homepage": "https://github.com/scaleway/docs-content#readme",
8+
"author": "@fronteamweb",
9+
"contributors": [
10+
"@teamdoc"
11+
],
12+
"keywords": [
13+
"scaleway",
14+
"docs",
15+
"markdown"
16+
],
17+
"repository": "github:scaleway/docs-content",
18+
"lint-staged": {
19+
"*.json": [
20+
"yarn format"
21+
]
22+
},
23+
"devDependencies": {
24+
"@commitlint/cli": "^13.1.0",
25+
"@commitlint/config-conventional": "^13.1.0",
26+
"husky": "^7.0.1",
27+
"lint-staged": "^11.1.2"
28+
},
29+
"scripts": {
30+
"format": "yarn run prettier --config .prettierrc --write \"**/*.{json}\""
31+
}
32+
}

‎yarn.lock

+1,372
Large diffs are not rendered by default.

0 commit comments

Comments
 (0)
Please sign in to comment.