Skip to content

Commit

Permalink
Merge pull request #1388 from BrianDouglasIE/feature/1387-enforce-dat…
Browse files Browse the repository at this point in the history
…a-diff

Feature/1387 enforce data diff
  • Loading branch information
MinThaMie authored Jul 24, 2024
2 parents 70ea0df + 7b6e751 commit 8917059
Show file tree
Hide file tree
Showing 4 changed files with 148 additions and 4 deletions.
19 changes: 19 additions & 0 deletions .markdownlint.json
Original file line number Diff line number Diff line change
@@ -0,0 +1,19 @@
{
"default": false,
"MD040": {
"allowed_languages": [
"js",
"ts",
"javascript",
"typescript",
"bash",
"shell",
"handlebars",
"plaintext",
"text",
"json",
"html",
"css"
]
}
}
8 changes: 4 additions & 4 deletions content/ember/v5/component-template-resolving.md
Original file line number Diff line number Diff line change
Expand Up @@ -17,7 +17,7 @@ Specifically, these layouts are no longer supported:
<table style="width:100%"><thead><tr><th>Classic</th><th>Pods</th></thead>
<tbody><tr><td style="vertical-align:top; width:50%;">

```
```text
{app,addon}/
components/
foo.js
Expand All @@ -32,7 +32,7 @@ Specifically, these layouts are no longer supported:

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

```
```text
{app,addon}/
components/
foo/
Expand All @@ -50,7 +50,7 @@ Specifically, these layouts are no longer supported:

The above example(s) can be migrated to:

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

Or using `--component-structure=nested`

```
```text
{app,addon}/
components/
foo/
Expand Down
3 changes: 3 additions & 0 deletions package.json
Original file line number Diff line number Diff line change
Expand Up @@ -20,6 +20,7 @@
"lint:js": "eslint . --cache",
"lint:js:fix": "eslint . --fix",
"lint:md": "remark . --frail --quiet",
"lint:markdownlint": "markdownlint \"content/**/*.md\" --config .markdownlint.json",
"start": "ember serve",
"test": "npm-run-all --aggregate-output --continue-on-error --parallel \"test:*\"",
"test:node": "mocha node-tests",
Expand Down Expand Up @@ -80,6 +81,8 @@
"eslint-plugin-prettier": "^4.2.1",
"eslint-plugin-qunit": "^7.2.0",
"loader.js": "^4.7.0",
"markdownlint": "^0.34.0",
"markdownlint-cli": "^0.41.0",
"mocha": "^10.2.0",
"npm-run-all": "^4.1.5",
"prember": "^2.0.0",
Expand Down
122 changes: 122 additions & 0 deletions pnpm-lock.yaml

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

0 comments on commit 8917059

Please sign in to comment.