@kununu/eslint-config 5.2.3-beta-0 → 5.2.3-beta-1

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
Files changed (2) hide show
  1. package/index.js +71 -1
  2. package/package.json +1 -1
package/index.js CHANGED
@@ -1,3 +1,6 @@
1
+ // Register our custom plugin
2
+ require('eslint/lib/cli-engine/config/plugins').define('custom', require('./eslint-plugin-custom'));
3
+
1
4
  // we need to have the baseRules to have the same on the typescript override
2
5
  // because it has extends the eslint does not take into consideration the ones from the base
3
6
  const baseRules = {
@@ -203,6 +206,72 @@ const baseRules = {
203
206
 
204
207
  // https://react.dev/blog/2024/04/25/react-19-upgrade-guide#removed-proptypes-and-defaultprops
205
208
  'react/require-default-props': 0,
209
+
210
+ 'custom/prefer-early-return': {
211
+ meta: {
212
+ type: 'suggestion',
213
+ docs: {
214
+ description: 'Prefer early returns over logical expressions in return statements',
215
+ category: 'Best Practices',
216
+ recommended: true,
217
+ },
218
+ fixable: 'code',
219
+ },
220
+ create(context) {
221
+ return {
222
+ ReturnStatement(node) {
223
+ const argument = node.argument?.type === 'ParenthesizedExpression'
224
+ ? node.argument.expression
225
+ : node.argument;
226
+
227
+ // Check if it's a sequence expression (comma-separated expressions)
228
+ if (argument?.type === 'SequenceExpression') {
229
+ const expressions = argument.expressions;
230
+
231
+ // Check if we have logical expressions with && in the sequence
232
+ const logicalExpressions = expressions.filter(expr =>
233
+ expr.type === 'LogicalExpression' && expr.operator === '&&'
234
+ );
235
+
236
+ if (logicalExpressions.length > 0) {
237
+ context.report({
238
+ node,
239
+ message: 'Prefer early returns over comma-separated logical expressions',
240
+ fix(fixer) {
241
+ const sourceCode = context.getSourceCode();
242
+
243
+ // Create a replacement string for the entire return
244
+ let replacement = '';
245
+
246
+ expressions.forEach((expr, index) => {
247
+ const isLast = index === expressions.length - 1;
248
+
249
+ if (expr.type === 'LogicalExpression' && expr.operator === '&&') {
250
+ const condition = sourceCode.getText(expr.left);
251
+ const value = sourceCode.getText(expr.right);
252
+
253
+ if (isLast && expressions.length > 1) {
254
+ // Last expression gets a simple return
255
+ replacement += `return ${value};`;
256
+ } else {
257
+ // Others get a conditional return
258
+ replacement += `if (${condition}) return ${value};\n`;
259
+ }
260
+ } else if (isLast) {
261
+ // Last non-logical expression gets a simple return
262
+ replacement += `return ${sourceCode.getText(expr)};`;
263
+ }
264
+ });
265
+
266
+ return fixer.replaceText(node, replacement);
267
+ }
268
+ });
269
+ }
270
+ }
271
+ }
272
+ };
273
+ }
274
+ },
206
275
  };
207
276
 
208
277
  module.exports = {
@@ -221,7 +290,8 @@ module.exports = {
221
290
  plugins: [
222
291
  '@babel',
223
292
  'lodash',
224
- 'sort-destructure-keys'
293
+ 'sort-destructure-keys',
294
+ 'custom'
225
295
  ],
226
296
 
227
297
  env: {
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@kununu/eslint-config",
3
- "version": "5.2.3-beta-0",
3
+ "version": "5.2.3-beta-1",
4
4
  "description": "kununu's ESLint config",
5
5
  "main": "index.js",
6
6
  "repository": "kununu/eslint-config",