Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

format code #693

Merged
merged 1 commit into from Jun 12, 2022
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Jump to
Jump to file
Failed to load files.
Diff view
Diff view
6 changes: 6 additions & 0 deletions .github/PULL_REQUEST_TEMPLATE.md
@@ -1,16 +1,22 @@
## Summary

<!-- Explain this change, e.g. "this pull request [implements, fixes, changes]...". -->

## Background & Context

<!-- Briefly outline why this PR was needed, a minimal context, culminating in your implementation. -->

## Tasks

<!-- Add tasks to give a quick overview for QA and reviewers -->

- xxxx
- xxxx
- xxxx

## Dependencies

<!-- If there are any dependencies on PRs or API work then list them here. -->

- [x] Resolved dependency
- [ ] Open dependency
2 changes: 1 addition & 1 deletion test/test-suite.js
Expand Up @@ -1857,7 +1857,7 @@
[
'<a xmlns="http://www.w3.org/1999/xhtml" href="#">abc</a>' +
'<CustomTag xmlns="http://www.w3.org/1999/xhtml" CustomAttr="foo"></CustomTag>',
"<a xmlns=\"http://www.w3.org/1999/xhtml\" href=\"#\">abc</a><CustomTag xmlns=\"http://www.w3.org/1999/xhtml\" CustomAttr=\"foo\" customattr=\"foo\"></CustomTag>"
'<a xmlns="http://www.w3.org/1999/xhtml" href="#">abc</a><CustomTag xmlns="http://www.w3.org/1999/xhtml" CustomAttr="foo" customattr="foo"></CustomTag>',
]
);
}
Expand Down