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: docs/contributing/FAQ.md
-18Lines changed: 0 additions & 18 deletions
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -31,7 +31,6 @@ limitations under the License.
31
31
-[What should I do if JavaScript linting on my commits fails because my function exceeds the maximum permissible number of parameters?](#max-params)
32
32
-[I have opened a pull request, where can I seek feedback?](#pr-feedback)
33
33
-[I need to generate fixtures for my tests. How can I do that, and what are the best references for inspiration?](#generate-fixtures)
34
-
-[I am facing a `Shadowed declaration` linting error in my C files, how can I fix it?](#shadowed-declaration)
35
34
-[I am facing a `Uninitialized variable` linting error in my C files, how can I fix it?](#uninitialized-variable)
36
35
-[I have the required packages in the expected paths, but I am still encountering an error like this while compiling the native add-on.](#compilation-error)
37
36
-[When should I use decimals in examples, benchmarks, and documentation, and when should I avoid them?](#decimal-usage)
@@ -145,23 +144,6 @@ Consider joining our [Gitter channel][stdlib-gitter]! We are proud to have a ver
145
144
146
145
Tests are a crucial part of any standard library package. We take our goal of achieving 100% test coverage very seriously and expect your work to be backed by tests. Often, you may need to generate fixtures to validate your implementation against an existing reliable source. You can use Julia, R, Python, or other languages to generate fixtures. To see how we do this, refer to these example scripts: [Python fixture script][python-fixtures], [Julia fixture script][julia-fixtures].
147
146
148
-
<aname="shadowed-declaration"></a>
149
-
150
-
## I am facing a `Shadowed declaration` linting error in my C files, how can I fix it?
0 commit comments