mirror of
				https://git.proxmox.com/git/pve-eslint
				synced 2025-11-04 08:33:51 +00:00 
			
		
		
		
	includes a (minimal) working wrapper Signed-off-by: Dominik Csapak <d.csapak@proxmox.com>
		
			
				
	
	
		
			45 lines
		
	
	
		
			1.2 KiB
		
	
	
	
		
			JavaScript
		
	
	
	
	
	
			
		
		
	
	
			45 lines
		
	
	
		
			1.2 KiB
		
	
	
	
		
			JavaScript
		
	
	
	
	
	
/**
 | 
						|
 * @fileoverview Rule to enforce default clauses in switch statements to be last
 | 
						|
 * @author Milos Djermanovic
 | 
						|
 */
 | 
						|
 | 
						|
"use strict";
 | 
						|
 | 
						|
//------------------------------------------------------------------------------
 | 
						|
// Rule Definition
 | 
						|
//------------------------------------------------------------------------------
 | 
						|
 | 
						|
module.exports = {
 | 
						|
    meta: {
 | 
						|
        type: "suggestion",
 | 
						|
 | 
						|
        docs: {
 | 
						|
            description: "enforce default clauses in switch statements to be last",
 | 
						|
            category: "Best Practices",
 | 
						|
            recommended: false,
 | 
						|
            url: "https://eslint.org/docs/rules/default-case-last"
 | 
						|
        },
 | 
						|
 | 
						|
        schema: [],
 | 
						|
 | 
						|
        messages: {
 | 
						|
            notLast: "Default clause should be the last clause."
 | 
						|
        }
 | 
						|
    },
 | 
						|
 | 
						|
    create(context) {
 | 
						|
        return {
 | 
						|
            SwitchStatement(node) {
 | 
						|
                const cases = node.cases,
 | 
						|
                    indexOfDefault = cases.findIndex(c => c.test === null);
 | 
						|
 | 
						|
                if (indexOfDefault !== -1 && indexOfDefault !== cases.length - 1) {
 | 
						|
                    const defaultClause = cases[indexOfDefault];
 | 
						|
 | 
						|
                    context.report({ node: defaultClause, messageId: "notLast" });
 | 
						|
                }
 | 
						|
            }
 | 
						|
        };
 | 
						|
    }
 | 
						|
};
 |