Skip to content

Commit 8917059

Browse files
authored
Merge pull request #1388 from BrianDouglasIE/feature/1387-enforce-data-diff
Feature/1387 enforce data diff
2 parents 70ea0df + 7b6e751 commit 8917059

File tree

4 files changed

+148
-4
lines changed

4 files changed

+148
-4
lines changed

.markdownlint.json

Lines changed: 19 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,19 @@
1+
{
2+
"default": false,
3+
"MD040": {
4+
"allowed_languages": [
5+
"js",
6+
"ts",
7+
"javascript",
8+
"typescript",
9+
"bash",
10+
"shell",
11+
"handlebars",
12+
"plaintext",
13+
"text",
14+
"json",
15+
"html",
16+
"css"
17+
]
18+
}
19+
}

content/ember/v5/component-template-resolving.md

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -17,7 +17,7 @@ Specifically, these layouts are no longer supported:
1717
<table style="width:100%"><thead><tr><th>Classic</th><th>Pods</th></thead>
1818
<tbody><tr><td style="vertical-align:top; width:50%;">
1919

20-
```
20+
```text
2121
{app,addon}/
2222
components/
2323
foo.js
@@ -32,7 +32,7 @@ Specifically, these layouts are no longer supported:
3232

3333
</td><td style="vertical-align:top">
3434

35-
```
35+
```text
3636
{app,addon}/
3737
components/
3838
foo/
@@ -50,7 +50,7 @@ Specifically, these layouts are no longer supported:
5050

5151
The above example(s) can be migrated to:
5252

53-
```
53+
```text
5454
{app,addon}/
5555
components/
5656
foo.js
@@ -62,7 +62,7 @@ The above example(s) can be migrated to:
6262

6363
Or using `--component-structure=nested`
6464

65-
```
65+
```text
6666
{app,addon}/
6767
components/
6868
foo/

package.json

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -20,6 +20,7 @@
2020
"lint:js": "eslint . --cache",
2121
"lint:js:fix": "eslint . --fix",
2222
"lint:md": "remark . --frail --quiet",
23+
"lint:markdownlint": "markdownlint \"content/**/*.md\" --config .markdownlint.json",
2324
"start": "ember serve",
2425
"test": "npm-run-all --aggregate-output --continue-on-error --parallel \"test:*\"",
2526
"test:node": "mocha node-tests",
@@ -80,6 +81,8 @@
8081
"eslint-plugin-prettier": "^4.2.1",
8182
"eslint-plugin-qunit": "^7.2.0",
8283
"loader.js": "^4.7.0",
84+
"markdownlint": "^0.34.0",
85+
"markdownlint-cli": "^0.41.0",
8386
"mocha": "^10.2.0",
8487
"npm-run-all": "^4.1.5",
8588
"prember": "^2.0.0",

pnpm-lock.yaml

Lines changed: 122 additions & 0 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

0 commit comments

Comments
 (0)