Skip to content
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.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion etc/eslint/.eslintrc.markdown.js
Original file line number Diff line number Diff line change
Expand Up @@ -20,7 +20,7 @@

// MODULES //

// FIXME: update the next line once all remark JSDoc ESLint rules are completed

Check warning on line 23 in etc/eslint/.eslintrc.markdown.js

View workflow job for this annotation

GitHub Actions / Lint Changed Files

Unexpected 'fixme' comment: 'FIXME: update the next line once all...'
var copy = require( './../../lib/node_modules/@stdlib/utils/copy' ); // var copy = require( './utils/copy.js' );
var defaults = require( './.eslintrc.js' );

Expand Down Expand Up @@ -121,7 +121,7 @@
*
* @private
*/
eslint.rules[ 'stdlib/jsdoc-return-annotations-values' ] = 'off'; // FIXME: remove this once we can reliably lint Markdown code blocks

Check warning on line 124 in etc/eslint/.eslintrc.markdown.js

View workflow job for this annotation

GitHub Actions / Lint Changed Files

Unexpected 'fixme' comment: 'FIXME: remove this once we can reliably...'

/**
* Do not enforce disallowing empty lines between module-level require statements.
Expand Down Expand Up @@ -149,7 +149,7 @@
*
* @private
*/
eslint.rules[ 'node/no-unpublished-require' ] = 'off';
eslint.rules[ 'n/no-unpublished-require' ] = 'off';


// EXPORTS //
Expand Down
2 changes: 1 addition & 1 deletion etc/eslint/overrides/index.js
Original file line number Diff line number Diff line change
Expand Up @@ -162,7 +162,7 @@ var overrides = [
'stdlib/return-annotations-values': 'off',
'strict': 'off',
'vars-on-top': 'off',
'node/no-unpublished-require': 'off'
'n/no-unpublished-require': 'off'
}
},
{
Expand Down
Loading