Skip to content

Commit 5859713

Browse files
authored
docs: Improve markdownlint configuration (#11104)
## Description Closes: #9404 --- ### Author Checklist *All items are required. Please add a note to the item if the item is not applicable and please add links to any relevant follow up issues.* I have... - [x] included the correct [type prefix](https://github.com/commitizen/conventional-commit-types/blob/v3.0.0/index.json) in the PR title - [ ] added `!` to the type prefix if API or client breaking change - [x] targeted the correct branch (see [PR Targeting](https://github.com/cosmos/cosmos-sdk/blob/master/CONTRIBUTING.md#pr-targeting)) - [x] provided a link to the relevant issue or specification - [ ] followed the guidelines for [building modules](https://github.com/cosmos/cosmos-sdk/blob/master/docs/building-modules) - [ ] included the necessary unit and integration [tests](https://github.com/cosmos/cosmos-sdk/blob/master/CONTRIBUTING.md#testing) - [ ] added a changelog entry to `CHANGELOG.md` - [ ] included comments for [documenting Go code](https://blog.golang.org/godoc) - [ ] updated the relevant documentation or specification - [x] reviewed "Files changed" and left comments if necessary - [x] confirmed all CI checks have passed ### Reviewers Checklist *All items are required. Please add a note if the item is not applicable and please add your handle next to the items reviewed if you only reviewed selected items.* I have... - [ ] confirmed the correct [type prefix](https://github.com/commitizen/conventional-commit-types/blob/v3.0.0/index.json) in the PR title - [ ] confirmed `!` in the type prefix if API or client breaking change - [ ] confirmed all author checklist items have been addressed - [ ] reviewed state machine logic - [ ] reviewed API design and naming - [ ] reviewed documentation is accurate - [ ] reviewed tests and test coverage - [ ] manually tested (if applicable)
1 parent b1f9a11 commit 5859713

File tree

212 files changed

+3793
-3756
lines changed

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

212 files changed

+3793
-3756
lines changed

.markdownlint.json

+4-10
Original file line numberDiff line numberDiff line change
@@ -1,17 +1,11 @@
11
{
22
"default": true,
3-
"MD001": false,
4-
"MD004": false,
3+
"MD004": {"style": "asterisk"},
54
"MD007": { "indent": 4 },
65
"MD013": false,
76
"MD024": { "siblings_only": true },
87
"MD025": false,
9-
"MD026": { "punctuation": ".,;:" },
10-
"MD029": false,
118
"MD033": false,
12-
"MD034": false,
13-
"MD036": false,
14-
"MD040": false,
15-
"MD041": false,
16-
"no-hard-tabs": false
17-
}
9+
"no-hard-tabs": false,
10+
"whitespace": false
11+
}

.markdownlintignore

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,2 +1,2 @@
1-
CHANGELOG.md
21
docs/node_modules
2+
/README.md

CHANGELOG.md

+1,074-1,064
Large diffs are not rendered by default.

CODING_GUIDELINES.md

+54-54
Original file line numberDiff line numberDiff line change
@@ -4,32 +4,32 @@ This document is an extension to [CONTRIBUTING](./CONTRIBUTING.md) and provides
44

55
## API & Design
66

7-
+ Code must be well structured:
8-
+ packages must have a limited responsibility (different concerns can go to different packages),
9-
+ types must be easy to compose,
10-
+ think about maintainbility and testability.
11-
+ "Depend upon abstractions, [not] concretions".
12-
+ Try to limit the number of methods you are exposing. It's easier to expose something later than to hide it.
13-
+ Take advantage of `internal` package concept.
14-
+ Follow agreed-upon design patterns and naming conventions.
15-
+ publicly-exposed functions are named logically, have forward-thinking arguments and return types.
16-
+ Avoid global variables and global configurators.
17-
+ Favor composable and extensible designs.
18-
+ Minimize code duplication.
19-
+ Limit third-party dependencies.
7+
* Code must be well structured:
8+
* packages must have a limited responsibility (different concerns can go to different packages),
9+
* types must be easy to compose,
10+
* think about maintainbility and testability.
11+
* "Depend upon abstractions, [not] concretions".
12+
* Try to limit the number of methods you are exposing. It's easier to expose something later than to hide it.
13+
* Take advantage of `internal` package concept.
14+
* Follow agreed-upon design patterns and naming conventions.
15+
* publicly-exposed functions are named logically, have forward-thinking arguments and return types.
16+
* Avoid global variables and global configurators.
17+
* Favor composable and extensible designs.
18+
* Minimize code duplication.
19+
* Limit third-party dependencies.
2020

2121
Performance:
2222

23-
+ Avoid unnecessary operations or memory allocations.
23+
* Avoid unnecessary operations or memory allocations.
2424

2525
Security:
2626

27-
+ Pay proper attention to exploits involving:
28-
+ gas usage
29-
+ transaction verification and signatures
30-
+ malleability
31-
+ code must be always deterministic
32-
+ Thread safety. If some functionality is not thread-safe, or uses something that is not thread-safe, then clearly indicate the risk on each level.
27+
* Pay proper attention to exploits involving:
28+
* gas usage
29+
* transaction verification and signatures
30+
* malleability
31+
* code must be always deterministic
32+
* Thread safety. If some functionality is not thread-safe, or uses something that is not thread-safe, then clearly indicate the risk on each level.
3333

3434
## Acceptance tests
3535

@@ -43,24 +43,24 @@ UAT should be revisited at each stage of the product development:
4343

4444
![acceptance-tests.png](./docs/assets/acceptance-tests.png)
4545

46-
### Why Acceptance Testing?
46+
### Why Acceptance Testing
4747

48-
- Automated acceptance tests catch serious problems that unit or component test suites could never catch.
49-
- Automated acceptance tests deliver business value the users are expecting as they test user scenarios.
50-
- Automated acceptance tests executed and passed on every build help improve the software delivery process.
51-
- Testers, developers, and customers need to work closely to create suitable automated acceptance test suites.
48+
* Automated acceptance tests catch serious problems that unit or component test suites could never catch.
49+
* Automated acceptance tests deliver business value the users are expecting as they test user scenarios.
50+
* Automated acceptance tests executed and passed on every build help improve the software delivery process.
51+
* Testers, developers, and customers need to work closely to create suitable automated acceptance test suites.
5252

53-
### How to define Acceptance Test?
53+
### How to define Acceptance Test
5454

5555
The best way to define AT is by starting from the user stories and think about all positive and negative scenarios a user can perform.
5656

5757
Product Developers should collaborate with stakeholders to define AT. Functional experts and business users are both needed for defining AT.
5858

5959
A good pattern for defining AT is listing scenarios with [GIVEN-WHEN-THEN](https://martinfowler.com/bliki/GivenWhenThen.html) format where:
6060

61-
- **GIVEN**: A set of initial circumstances (e.g. bank balance)
62-
- **WHEN**: Some event happens (e.g. customer attempts a transfer)
63-
- **THEN**: The expected result as per the defined behavior of the system
61+
* **GIVEN**: A set of initial circumstances (e.g. bank balance)
62+
* **WHEN**: Some event happens (e.g. customer attempts a transfer)
63+
* **THEN**: The expected result as per the defined behavior of the system
6464

6565
In other words: we define a use case input, current state and the expected outcome. Example:
6666

@@ -79,9 +79,9 @@ In other words: we define a use case input, current state and the expected outco
7979
8080
*Reference: [writing acceptance tests](https://openclassrooms.com/en/courses/4544611-write-agile-documentation-user-stories-acceptance-tests/4810081-writing-acceptance-tests)*.
8181

82-
### How and where to add acceptance tests?
82+
### How and where to add acceptance tests
8383

84-
Acceptance tests are written in the Markdown format, using the scenario template described above, and be part of the specification (`xx_test.md` file in _spec_ directory). Example: (`eco-credits/spec/06.test.md`)[https://github.com/regen-network/regen-ledger/blob/7297783577e6cd102c5093365b573163680f36a1/x/ecocredit/spec/06_tests.md]
84+
Acceptance tests are written in the Markdown format, using the scenario template described above, and be part of the specification (`xx_test.md` file in *spec* directory). Example: [`eco-credits/spec/06.test.md`](https://github.com/regen-network/regen-ledger/blob/7297783577e6cd102c5093365b573163680f36a1/x/ecocredit/spec/06_tests.md).
8585

8686
Acceptance tests should be defined during the design phase or at an early stage of development. Moreover, they should be defined before writing a module architecture - it will clarify the purpose and usage of the software.
8787
Automated tests should cover all acceptance tests scenarios.
@@ -90,11 +90,11 @@ Automated tests should cover all acceptance tests scenarios.
9090

9191
Make sure your code is well tested:
9292

93-
+ Provide unit tests for every unit of your code if possible. Unit tests are expected to comprise 70%-80% of your tests.
94-
+ Describe the test scenarios you are implementing for integration tests.
95-
+ Create integration tests for queries and msgs.
96-
+ Use both test cases and property / fuzzy testing. We use the [rapid](pgregory.net/rapid) Go library for property-based and fuzzy testing.
97-
+ Do not decrease code test coverage. Explain in a PR if test coverage is decreased.
93+
* Provide unit tests for every unit of your code if possible. Unit tests are expected to comprise 70%-80% of your tests.
94+
* Describe the test scenarios you are implementing for integration tests.
95+
* Create integration tests for queries and msgs.
96+
* Use both test cases and property / fuzzy testing. We use the [rapid](pgregory.net/rapid) Go library for property-based and fuzzy testing.
97+
* Do not decrease code test coverage. Explain in a PR if test coverage is decreased.
9898

9999
We expect tests to use `require` or `assert` rather than `t.Skip` or `t.Fail`,
100100
unless there is a reason to do otherwise.
@@ -122,31 +122,31 @@ for tcIndex, tc := range cases {
122122
123123
We are forming a QA team that will support the core Cosmos SDK team and collaborators by:
124124
125-
- Improving the Cosmos SDK QA Processes
126-
- Improving automation in QA and testing
127-
- Defining high-quality metrics
128-
- Maintaining and improving testing frameworks (unit tests, integration tests, and functional tests)
129-
- Defining test scenarios.
130-
- Verifying user experience and defining a high quality.
131-
- We want to have **acceptance tests**! Document and list acceptance lists that are implemented and identify acceptance tests that are still missing.
132-
- Acceptance tests should be specified in `acceptance-tests` directory as Markdown files.
133-
- Supporting other teams with testing frameworks, automation, and User Experience testing.
134-
- Testing chain upgrades for every new breaking change.
135-
- Defining automated tests that assure data integrity after an update.
125+
* Improving the Cosmos SDK QA Processes
126+
* Improving automation in QA and testing
127+
* Defining high-quality metrics
128+
* Maintaining and improving testing frameworks (unit tests, integration tests, and functional tests)
129+
* Defining test scenarios.
130+
* Verifying user experience and defining a high quality.
131+
* We want to have **acceptance tests**! Document and list acceptance lists that are implemented and identify acceptance tests that are still missing.
132+
* Acceptance tests should be specified in `acceptance-tests` directory as Markdown files.
133+
* Supporting other teams with testing frameworks, automation, and User Experience testing.
134+
* Testing chain upgrades for every new breaking change.
135+
* Defining automated tests that assure data integrity after an update.
136136
137137
Desired outcomes:
138138
139-
- QA team works with Development Team.
140-
- QA is happening in parallel with Core Cosmos SDK development.
141-
- Releases are more predictable.
142-
- QA reports. Goal is to guide with new tasks and be one of the QA measures.
139+
* QA team works with Development Team.
140+
* QA is happening in parallel with Core Cosmos SDK development.
141+
* Releases are more predictable.
142+
* QA reports. Goal is to guide with new tasks and be one of the QA measures.
143143
144144
As a developer, you must help the QA team by providing instructions for User Experience (UX) and functional testing.
145145
146146
### QA Team to cross check Acceptance Tests
147147
148148
Once the AT are defined, the QA team will have an overview of the behavior a user can expect and:
149149
150-
- validate the user experience will be good
151-
- validate the implementation conforms the acceptance tests
152-
- by having a broader overview of the use cases, QA team should be able to define **test suites** and test data to efficiently automate Acceptance Tests and reuse the work.
150+
* validate the user experience will be good
151+
* validate the implementation conforms the acceptance tests
152+
* by having a broader overview of the use cases, QA team should be able to define **test suites** and test data to efficiently automate Acceptance Tests and reuse the work.

0 commit comments

Comments
 (0)