Press n or j to go to the next uncovered block, b, p or k for the previous block.
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 | 'use strict'
/**
* Plugin rules for Node.js codebases
*
* 📝 https://github.com/mysticatea/eslint-plugin-node
*/
module.exports = {
// Disable duplicated no-process-exit included by ESLint Node plugin
'no-process-exit': 'off',
// --------------------------------------------------------
// Possible errors
// When working with callbacks require errors are handled
'node/handle-callback-err': 'error',
// When working with callbacks, always pass null, undefined, or Error as the
// first arg to callback
'node/no-callback-literal': 'error',
// Disallow exports = {}, use module.exports = {}
'node/no-exports-assign': 'error',
// Don't use deprecated apis ¯\_(ツ)_/¯
'node/no-deprecated-api': 'error',
// Disallow use of new operator with the require function, treat require calls
// like ESM imports for easier migrations
'node/no-new-require': 'error',
// Disallow string concatenation with __dirname and __filename, path.join or
// path.resolve should be used instead to ensure the correct OS separators
// are used
'node/no-path-concat': 'error',
// Disallow process.exit(), ansyc stdout operations or logging may be terminated
// it's better to call process.exitCode() and use an exception to allow Node
// to terminate the process.
'node/no-process-exit': 'error',
// Any bin file must be published
'node/no-unpublished-bin': 'error',
// Don't use unsupported features
'node/no-unsupported-features/es-builtins': 'error',
'node/no-unsupported-features/node-builtins': 'error',
// There are enough projects with Node+Cypress or browser imports that this
// rule is more irritating than helpful
'node/no-unsupported-features/es-syntax': 'off',
// Updates ESLint to treat process.exit similar to throwing an error
'node/process-exit-as-throw': 'error',
// Require correct shebang for node shell scripts
'node/shebang': 'error',
// --------------------------------------------------------
// --- Stylistic
// Enforce using return with callbacks to prevent accidentally calling them
// more than once, by
'node/callback-return': ['error', ['callback', 'cb', 'next']],
// Enforce consistent usage of `module.exports` vs `exports`
'node/exports-style': ['error', 'module.exports'],
// Extensions are typically ommitted, but should be required in experimental
// modules context
'node/file-extension-in-import': 'off',
// Enforce require calls occur at module top level-scope, ensures similar
// behavior to ESM and discourages often confusing workarounds to circular
// dependencies
'node/global-require': 'error',
// Enforce require calls be grouped separately from variable declarations
'node/no-mixed-requires': ['error', { grouping: true, allowCall: false }],
// Prefer accessing environment variables in a single location that manages
// service configs.
// ⚙️ Configured explicitly in /src override
'node/no-process-env': 'off',
// Prefer async methods whenever possible
'node/no-sync': 'error',
// Prefer using globals instead of requiring
'node/prefer-global/buffer': ['error', 'always'],
'node/prefer-global/console': ['error', 'always'],
'node/prefer-global/process': ['error', 'always'],
'node/prefer-global/text-decoder': ['error', 'always'],
'node/prefer-global/text-encoder': ['error', 'always'],
'node/prefer-global/url-search-params': ['error', 'always'],
'node/prefer-global/url': ['error', 'always'],
// Prefer promises over callbacks
'node/prefer-promises/dns': 'error',
'node/prefer-promises/fs': 'error',
// --------------------------------------------------------
// --- Imports
// Prefer import/no-extraneous-dependencies
'node/no-extraneous-import': 'off',
'node/no-extraneous-require': 'off',
// Prefer import/no-unresolved
'node/no-missing-import': 'off',
'node/no-missing-require': 'off',
// Prefer no-restricted-imports
'node/no-restricted-import': 'off',
'node/no-restricted-require': 'off',
// Prefer import/no-extraneous-dependencies
'node/no-unpublished-import': 'off',
'node/no-unpublished-require': 'off',
}
|