Skip to content

Commit 109365b

Browse files
committed
chore: propagate node/no-sync -> n/no-sync across remaining README directives
Propagates fix from d689d2d ("chore: propagate `node/` -> `n/` eslint plugin prefix update across README directives") to 50 README files under `lib/node_modules/@stdlib/` that still carried `node/no-sync` ESLint directives. The `eslint-plugin-node` package was renamed to `eslint-plugin-n` (see 0dc62ae, c7d0cd5). Includes one inline-config form (`<!-- eslint ... n/no-sync: "off" -->`) in `_tools/remark/plugins/remark-includes/README.md` for namespace consistency, since leaving it as `node/no-sync` would cause remark-lint-eslint to emit "Definition for rule 'node/no-sync' was not found". Two READMEs were dropped from the propagation because their `Lint Markdown files` checks fail on pre-existing issues unrelated to this fix: - `blas/ext/base/wasm/dapx/README.md` (mismatched section class at line 245: `<section class="notes">` closed by `<!-- /.usage -->`) - `fs/append-file/README.md` (`no-restricted-syntax`: uses `fs.existsSync` instead of `@stdlib/fs/exists` in an example block) --- type: pre_commit_static_analysis_report description: Results of running static analysis checks when committing changes. report: - task: lint_filenames status: passed - task: lint_editorconfig status: skipped - task: lint_markdown status: skipped - task: lint_package_json status: na - task: lint_repl_help status: na - task: lint_javascript_src status: na - task: lint_javascript_cli status: na - task: lint_javascript_examples status: na - task: lint_javascript_tests status: na - task: lint_javascript_benchmarks status: na - task: lint_python status: na - task: lint_r status: na - task: lint_c_src status: na - task: lint_c_examples status: na - task: lint_c_benchmarks status: na - task: lint_c_tests_fixtures status: na - task: lint_shell status: na - task: lint_typescript_declarations status: passed - task: lint_typescript_tests status: na - task: lint_license_headers status: passed ---
1 parent baaf981 commit 109365b

50 files changed

Lines changed: 143 additions & 143 deletions

File tree

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

lib/node_modules/@stdlib/_tools/remark/plugins/remark-includes/README.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -34,7 +34,7 @@ var includes = require( '@stdlib/_tools/remark/plugins/remark-includes' );
3434

3535
Attaches a plugin to a [remark][remark] processor in order to insert content from external Markdown files between include comment directives.
3636

37-
<!-- eslint-disable node/no-sync -->
37+
<!-- eslint-disable n/no-sync -->
3838

3939
```javascript
4040
var join = require( 'path' ).join;
@@ -93,7 +93,7 @@ By default, include paths are resolved relative to the processed file's director
9393

9494
## Examples
9595

96-
<!-- eslint no-undef: "error", node/no-sync: "off" -->
96+
<!-- eslint no-undef: "error", n/no-sync: "off" -->
9797

9898
```javascript
9999
var join = require( 'path' ).join;

lib/node_modules/@stdlib/blas/base/wasm/ccopy/README.md

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -125,7 +125,7 @@ ccopy.ndarray( 2, x, 2, 1, y, -1, y.length-1 );
125125

126126
Returns a new WebAssembly [module wrapper][@stdlib/wasm/module-wrapper] instance which uses the provided WebAssembly [memory][@stdlib/wasm/memory] instance as its underlying memory.
127127

128-
<!-- eslint-disable node/no-sync -->
128+
<!-- eslint-disable n/no-sync -->
129129

130130
```javascript
131131
var Memory = require( '@stdlib/wasm/memory' );
@@ -148,7 +148,7 @@ mod.initializeSync();
148148

149149
Copies values from `x` into `y`.
150150

151-
<!-- eslint-disable node/no-sync -->
151+
<!-- eslint-disable n/no-sync -->
152152

153153
```javascript
154154
var Memory = require( '@stdlib/wasm/memory' );
@@ -216,7 +216,7 @@ The function has the following parameters:
216216

217217
Copies values from `x` into `y` using alternative indexing semantics.
218218

219-
<!-- eslint-disable node/no-sync -->
219+
<!-- eslint-disable n/no-sync -->
220220

221221
```javascript
222222
var Memory = require( '@stdlib/wasm/memory' );

lib/node_modules/@stdlib/blas/base/wasm/cscal/README.md

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -139,7 +139,7 @@ cscal.ndarray( 2, ca, cx, 2, 1 );
139139

140140
Returns a new WebAssembly [module wrapper][@stdlib/wasm/module-wrapper] instance which uses the provided WebAssembly [memory][@stdlib/wasm/memory] instance as its underlying memory.
141141

142-
<!-- eslint-disable node/no-sync -->
142+
<!-- eslint-disable n/no-sync -->
143143

144144
```javascript
145145
var Memory = require( '@stdlib/wasm/memory' );
@@ -162,7 +162,7 @@ mod.initializeSync();
162162

163163
Scales values from `cx` by `ca`.
164164

165-
<!-- eslint-disable node/no-sync -->
165+
<!-- eslint-disable n/no-sync -->
166166

167167
```javascript
168168
var Memory = require( '@stdlib/wasm/memory' );
@@ -230,7 +230,7 @@ The function has the following parameters:
230230

231231
Scales values from `cx` by `ca` using alternative indexing semantics.
232232

233-
<!-- eslint-disable node/no-sync -->
233+
<!-- eslint-disable n/no-sync -->
234234

235235
```javascript
236236
var Memory = require( '@stdlib/wasm/memory' );

lib/node_modules/@stdlib/blas/base/wasm/csrot/README.md

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -129,7 +129,7 @@ csrot.ndarray( 2, cx, 2, 1, cy, 2, 1, 0.8, 0.6 );
129129

130130
Returns a new WebAssembly [module wrapper][@stdlib/wasm/module-wrapper] instance which uses the provided WebAssembly [memory][@stdlib/wasm/memory] instance as its underlying memory.
131131

132-
<!-- eslint-disable node/no-sync -->
132+
<!-- eslint-disable n/no-sync -->
133133

134134
```javascript
135135
var Memory = require( '@stdlib/wasm/memory' );
@@ -152,7 +152,7 @@ mod.initializeSync();
152152

153153
Applies a plane rotation.
154154

155-
<!-- eslint-disable node/no-sync -->
155+
<!-- eslint-disable n/no-sync -->
156156

157157
```javascript
158158
var Memory = require( '@stdlib/wasm/memory' );
@@ -226,7 +226,7 @@ The function has the following parameters:
226226

227227
Applies a plane rotation using alternative indexing semantics.
228228

229-
<!-- eslint-disable node/no-sync -->
229+
<!-- eslint-disable n/no-sync -->
230230

231231
```javascript
232232
var Memory = require( '@stdlib/wasm/memory' );

lib/node_modules/@stdlib/blas/base/wasm/cswap/README.md

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -128,7 +128,7 @@ cswap.ndarray( 2, x, 2, 1, y, -1, y.length-1 );
128128

129129
Returns a new WebAssembly [module wrapper][@stdlib/wasm/module-wrapper] instance which uses the provided WebAssembly [memory][@stdlib/wasm/memory] instance as its underlying memory.
130130

131-
<!-- eslint-disable node/no-sync -->
131+
<!-- eslint-disable n/no-sync -->
132132

133133
```javascript
134134
var Memory = require( '@stdlib/wasm/memory' );
@@ -151,7 +151,7 @@ mod.initializeSync();
151151

152152
Interchanges two complex single-precision floating-point vectors.
153153

154-
<!-- eslint-disable node/no-sync -->
154+
<!-- eslint-disable n/no-sync -->
155155

156156
```javascript
157157
var Memory = require( '@stdlib/wasm/memory' );
@@ -222,7 +222,7 @@ The function has the following parameters:
222222

223223
Interchanges two complex single-precision floating-point vectors using alternative indexing semantics.
224224

225-
<!-- eslint-disable node/no-sync -->
225+
<!-- eslint-disable n/no-sync -->
226226

227227
```javascript
228228
var Memory = require( '@stdlib/wasm/memory' );

lib/node_modules/@stdlib/blas/base/wasm/dasum/README.md

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -117,7 +117,7 @@ sum = dasum.ndarray( 3, x, -1, x.length-1 );
117117

118118
Returns a new WebAssembly [module wrapper][@stdlib/wasm/module-wrapper] instance which uses the provided WebAssembly [memory][@stdlib/wasm/memory] instance as its underlying memory.
119119

120-
<!-- eslint-disable node/no-sync -->
120+
<!-- eslint-disable n/no-sync -->
121121

122122
```javascript
123123
var Memory = require( '@stdlib/wasm/memory' );
@@ -140,7 +140,7 @@ mod.initializeSync();
140140

141141
Computes the sum of absolute values.
142142

143-
<!-- eslint-disable node/no-sync -->
143+
<!-- eslint-disable n/no-sync -->
144144

145145
```javascript
146146
var Memory = require( '@stdlib/wasm/memory' );
@@ -187,7 +187,7 @@ The function has the following parameters:
187187

188188
Computes the sum of absolute values using alternative indexing semantics.
189189

190-
<!-- eslint-disable node/no-sync -->
190+
<!-- eslint-disable n/no-sync -->
191191

192192
```javascript
193193
var Memory = require( '@stdlib/wasm/memory' );

lib/node_modules/@stdlib/blas/base/wasm/daxpy/README.md

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -128,7 +128,7 @@ daxpy.ndarray( 3, alpha, x, 2, 1, y, -1, y.length-1 );
128128

129129
Returns a new WebAssembly [module wrapper][@stdlib/wasm/module-wrapper] instance which uses the provided WebAssembly [memory][@stdlib/wasm/memory] instance as its underlying memory.
130130

131-
<!-- eslint-disable node/no-sync -->
131+
<!-- eslint-disable n/no-sync -->
132132

133133
```javascript
134134
var Memory = require( '@stdlib/wasm/memory' );
@@ -151,7 +151,7 @@ mod.initializeSync();
151151

152152
Multiplies a vector `x` by a constant and adds the result to `y`.
153153

154-
<!-- eslint-disable node/no-sync -->
154+
<!-- eslint-disable n/no-sync -->
155155

156156
```javascript
157157
var Memory = require( '@stdlib/wasm/memory' );
@@ -211,7 +211,7 @@ The function has the following parameters:
211211

212212
Multiplies a vector `x` by a constant and adds the result to `y` using alternative indexing semantics.
213213

214-
<!-- eslint-disable node/no-sync -->
214+
<!-- eslint-disable n/no-sync -->
215215

216216
```javascript
217217
var Memory = require( '@stdlib/wasm/memory' );

lib/node_modules/@stdlib/blas/base/wasm/dcopy/README.md

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -122,7 +122,7 @@ dcopy.ndarray( 3, x, 2, 1, y, -1, y.length-1 );
122122

123123
Returns a new WebAssembly [module wrapper][@stdlib/wasm/module-wrapper] instance which uses the provided WebAssembly [memory][@stdlib/wasm/memory] instance as its underlying memory.
124124

125-
<!-- eslint-disable node/no-sync -->
125+
<!-- eslint-disable n/no-sync -->
126126

127127
```javascript
128128
var Memory = require( '@stdlib/wasm/memory' );
@@ -145,7 +145,7 @@ mod.initializeSync();
145145

146146
Copies values from `x` into `y`.
147147

148-
<!-- eslint-disable node/no-sync -->
148+
<!-- eslint-disable n/no-sync -->
149149

150150
```javascript
151151
var Memory = require( '@stdlib/wasm/memory' );
@@ -204,7 +204,7 @@ The function has the following parameters:
204204

205205
Copies values from `x` into `y` using alternative indexing semantics.
206206

207-
<!-- eslint-disable node/no-sync -->
207+
<!-- eslint-disable n/no-sync -->
208208

209209
```javascript
210210
var Memory = require( '@stdlib/wasm/memory' );

lib/node_modules/@stdlib/blas/base/wasm/ddot/README.md

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -122,7 +122,7 @@ var z = ddot.ndarray( 3, x, 2, 1, y, -1, y.length-1 );
122122

123123
Returns a new WebAssembly [module wrapper][@stdlib/wasm/module-wrapper] instance which uses the provided WebAssembly [memory][@stdlib/wasm/memory] instance as its underlying memory.
124124

125-
<!-- eslint-disable node/no-sync -->
125+
<!-- eslint-disable n/no-sync -->
126126

127127
```javascript
128128
var Memory = require( '@stdlib/wasm/memory' );
@@ -145,7 +145,7 @@ mod.initializeSync();
145145

146146
Computes the dot product of `x` and `y`.
147147

148-
<!-- eslint-disable node/no-sync -->
148+
<!-- eslint-disable n/no-sync -->
149149

150150
```javascript
151151
var Memory = require( '@stdlib/wasm/memory' );
@@ -199,7 +199,7 @@ The function has the following parameters:
199199

200200
Computes the dot product of `x` and `y` using alternative indexing semantics.
201201

202-
<!-- eslint-disable node/no-sync -->
202+
<!-- eslint-disable n/no-sync -->
203203

204204
```javascript
205205
var Memory = require( '@stdlib/wasm/memory' );

lib/node_modules/@stdlib/blas/base/wasm/dnrm2/README.md

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -113,7 +113,7 @@ var z = dnrm2.ndarray( 4, x, 2, 1 );
113113

114114
Returns a new WebAssembly [module wrapper][@stdlib/wasm/module-wrapper] instance which uses the provided WebAssembly [memory][@stdlib/wasm/memory] instance as its underlying memory.
115115

116-
<!-- eslint-disable node/no-sync -->
116+
<!-- eslint-disable n/no-sync -->
117117

118118
```javascript
119119
var Memory = require( '@stdlib/wasm/memory' );
@@ -136,7 +136,7 @@ mod.initializeSync();
136136

137137
Computes the L2-norm of a double-precision floating-point vector.
138138

139-
<!-- eslint-disable node/no-sync -->
139+
<!-- eslint-disable n/no-sync -->
140140

141141
```javascript
142142
var Memory = require( '@stdlib/wasm/memory' );
@@ -182,7 +182,7 @@ The function has the following parameters:
182182

183183
Computes the L2-norm of a double-precision floating-point vector using alternative indexing semantics.
184184

185-
<!-- eslint-disable node/no-sync -->
185+
<!-- eslint-disable n/no-sync -->
186186

187187
```javascript
188188
var Memory = require( '@stdlib/wasm/memory' );

0 commit comments

Comments
 (0)