mirror of
				https://scm.univ-tours.fr/22107988t/rappaurio-sae501_502.git
				synced 2025-11-04 02:35:23 +01:00 
			
		
		
		
	
		
			
				
	
	
		
			43 lines
		
	
	
		
			864 B
		
	
	
	
		
			JavaScript
		
	
	
	
	
	
			
		
		
	
	
			43 lines
		
	
	
		
			864 B
		
	
	
	
		
			JavaScript
		
	
	
	
	
	
module.exports = {
 | 
						|
	root: true,
 | 
						|
	env: {
 | 
						|
		node: true,
 | 
						|
		jest: true,
 | 
						|
	},
 | 
						|
	extends: [
 | 
						|
		"standard",
 | 
						|
		"plugin:@typescript-eslint/recommended",
 | 
						|
	],
 | 
						|
	plugins: [
 | 
						|
		"@typescript-eslint",
 | 
						|
	],
 | 
						|
	parser: "@typescript-eslint/parser",
 | 
						|
	parserOptions: {
 | 
						|
		ecmaVersion: 2018,
 | 
						|
	},
 | 
						|
	rules: {
 | 
						|
		quotes: ["error", "double"],
 | 
						|
		semi: ["error", "always"],
 | 
						|
		"no-warning-comments": "warn",
 | 
						|
		"comma-dangle": ["error", "always-multiline"],
 | 
						|
		indent: ["error", "tab", { SwitchCase: 1 }],
 | 
						|
		"no-tabs": "off",
 | 
						|
		"no-var": "error",
 | 
						|
		"prefer-const": "error",
 | 
						|
		"object-shorthand": "error",
 | 
						|
		"no-restricted-globals": [
 | 
						|
			"error",
 | 
						|
			{
 | 
						|
				name: "fit",
 | 
						|
				message: "Do not commit focused tests.",
 | 
						|
			},
 | 
						|
			{
 | 
						|
				name: "fdescribe",
 | 
						|
				message: "Do not commit focused tests.",
 | 
						|
			},
 | 
						|
		],
 | 
						|
		"@typescript-eslint/ban-ts-comment": "warn",
 | 
						|
		"@typescript-eslint/no-var-requires": "warn",
 | 
						|
	},
 | 
						|
};
 |