You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Copy file name to clipboardExpand all lines: .editorconfig
+1-2Lines changed: 1 addition & 2 deletions
Original file line number
Diff line number
Diff line change
@@ -86,7 +86,6 @@ indent_style = tab
86
86
[*.{f,f.txt}]
87
87
indent_style = space
88
88
indent_size = 2
89
-
insert_final_newline = false
90
89
91
90
# Set properties for shell files:
92
91
[*.{sh,sh.txt}]
@@ -121,7 +120,7 @@ indent_style = tab
121
120
[*.{md,md.txt}]
122
121
indent_style = space
123
122
indent_size = 4
124
-
trim_trailing_whitespace = false
123
+
trim_trailing_whitespace = true # Note: this disables using two spaces to force a hard line break, which is permitted in Markdown. As we don't typically follow that practice (TMK), we should be safe to automatically trim.
Copy file name to clipboardExpand all lines: .github/PULL_REQUEST_TEMPLATE.md
+1-1Lines changed: 1 addition & 1 deletion
Original file line number
Diff line number
Diff line change
@@ -2,6 +2,6 @@
2
2
3
3
We are excited about your pull request, but unfortunately we are not accepting pull requests against this repository, as all development happens on the [main project repository](https://github.com/stdlib-js/stdlib). We kindly request that you submit this pull request against the [respective directory](https://github.com/stdlib-js/stdlib/tree/develop/lib/node_modules/%40stdlib/assert/contains) of the main repository where we’ll review and provide feedback.
4
4
5
-
If this is your first stdlib contribution, be sure to read the [contributing guide](https://github.com/stdlib-js/stdlib/blob/develop/CONTRIBUTING.md) which provides guidelines and instructions for submitting contributions. You may also consult the [development guide](https://github.com/stdlib-js/stdlib/blob/develop/docs/development.md) for help on developing stdlib.
5
+
If this is your first stdlib contribution, be sure to read the [contributing guide](https://github.com/stdlib-js/stdlib/blob/develop/CONTRIBUTING.md) which provides guidelines and instructions for submitting contributions. You may also consult the [development guide](https://github.com/stdlib-js/stdlib/blob/develop/docs/contributing/development.md) for help on developing stdlib.
6
6
7
7
We look forward to receiving your contribution! :smiley:
Copy file name to clipboardExpand all lines: CHANGELOG.md
+104Lines changed: 104 additions & 0 deletions
Original file line number
Diff line number
Diff line change
@@ -2,6 +2,110 @@
2
2
3
3
> Package changelog.
4
4
5
+
<sectionclass="release"id="unreleased">
6
+
7
+
## Unreleased (2025-03-30)
8
+
9
+
<sectionclass="features">
10
+
11
+
### Features
12
+
13
+
-[`fa71a1e`](https://github.com/stdlib-js/stdlib/commit/fa71a1e16b3abbb33e716c96999579fb74a28058) - distinguish between signed zeros
14
+
15
+
</section>
16
+
17
+
<!-- /.features -->
18
+
19
+
<sectionclass="breaking-changes">
20
+
21
+
### BREAKING CHANGES
22
+
23
+
-[`fa71a1e`](https://github.com/stdlib-js/stdlib/commit/fa71a1e16b3abbb33e716c96999579fb74a28058): distinguish signed zeros
24
+
25
+
- To migrate, users should normalize signed zeros before invoking
26
+
this function. Otherwise, users should use a different algorithm
27
+
which uses strict equality to determine \"sameness\" (e.g., a package
28
+
such as `@stdlib/array-base/includes`).
29
+
---
30
+
type: pre_commit_static_analysis_report
31
+
description: Results of running static analysis checks when committing changes.
32
+
report:
33
+
- task: lint_filenames
34
+
status: passed
35
+
- task: lint_editorconfig
36
+
status: passed
37
+
- task: lint_markdown
38
+
status: passed
39
+
- task: lint_package_json
40
+
status: na
41
+
- task: lint_repl_help
42
+
status: passed
43
+
- task: lint_javascript_src
44
+
status: passed
45
+
- task: lint_javascript_cli
46
+
status: na
47
+
- task: lint_javascript_examples
48
+
status: na
49
+
- task: lint_javascript_tests
50
+
status: passed
51
+
- task: lint_javascript_benchmarks
52
+
status: na
53
+
- task: lint_python
54
+
status: na
55
+
- task: lint_r
56
+
status: na
57
+
- task: lint_c_src
58
+
status: na
59
+
- task: lint_c_examples
60
+
status: na
61
+
- task: lint_c_benchmarks
62
+
status: na
63
+
- task: lint_c_tests_fixtures
64
+
status: na
65
+
- task: lint_shell
66
+
status: na
67
+
- task: lint_typescript_declarations
68
+
status: passed
69
+
- task: lint_typescript_tests
70
+
status: na
71
+
- task: lint_license_headers
72
+
status: passed
73
+
---
74
+
75
+
</section>
76
+
77
+
<!-- /.breaking-changes -->
78
+
79
+
<sectionclass="commits">
80
+
81
+
### Commits
82
+
83
+
<details>
84
+
85
+
-[`fa71a1e`](https://github.com/stdlib-js/stdlib/commit/fa71a1e16b3abbb33e716c96999579fb74a28058) - **feat:** distinguish between signed zeros _(by Athan Reines)_
86
+
87
+
</details>
88
+
89
+
</section>
90
+
91
+
<!-- /.commits -->
92
+
93
+
<sectionclass="contributors">
94
+
95
+
### Contributors
96
+
97
+
A total of 1 person contributed to this release. Thank you to this contributor:
0 commit comments