The SearXNG JavaScript Style Guide is a set of eslint rules [1] based on the
eslint:recommended [2] rules.
    "extends": "eslint:recommended"
The additional rules adopted from the JavaScript Standard Style [3][4].
[1] https://eslint.org/docs/rules/
[2] https://github.com/kunalgolani/eslint-config/tree/master/packages/recommended
[3] https://standardjs.com/rules.html#javascript-standard-style
[4] https://github.com/standard/eslint-config-standard/blob/master/.eslintrc.json
Signed-off-by: Markus Heiser <markus.heiser@darmarit.de>
		
	
			
		
			
				
	
	
		
			30 lines
		
	
	
		
			1.1 KiB
		
	
	
	
		
			JSON
		
	
	
	
	
	
			
		
		
	
	
			30 lines
		
	
	
		
			1.1 KiB
		
	
	
	
		
			JSON
		
	
	
	
	
	
{
 | 
						|
    "env": {
 | 
						|
        "browser": true,
 | 
						|
        "es2021": true,
 | 
						|
        "node": true
 | 
						|
    },
 | 
						|
    "extends": "eslint:recommended",
 | 
						|
    "parserOptions": {
 | 
						|
        "ecmaVersion": 12
 | 
						|
    },
 | 
						|
    "rules": {
 | 
						|
        "indent": ["error", 2],
 | 
						|
        "keyword-spacing": ["error", { "before": true, "after": true }],
 | 
						|
        "no-trailing-spaces": 2,
 | 
						|
        "space-before-function-paren": ["error", "always"],
 | 
						|
        "space-infix-ops": "error",
 | 
						|
        "comma-spacing": ["error", { "before": false, "after": true }],
 | 
						|
        "brace-style": ["error", "1tbs", { "allowSingleLine": true }],
 | 
						|
        "curly": ["error", "multi-line"],
 | 
						|
        "block-spacing": ["error", "always"],
 | 
						|
        "comma-spacing": ["error", { "before": false, "after": true }],
 | 
						|
        "dot-location": ["error", "property"],
 | 
						|
        "key-spacing": ["error", { "beforeColon": false, "afterColon": true }],
 | 
						|
        "spaced-comment": ["error", "always", {
 | 
						|
            "line": { "markers": ["*package", "!", "/", ",", "="] },
 | 
						|
            "block": { "balanced": true, "markers": ["*package", "!", ",", ":", "::", "flow-include"], "exceptions": ["*"] }
 | 
						|
        }]
 | 
						|
    }
 | 
						|
}
 |