mirror of
				https://github.com/NginxProxyManager/nginx-proxy-manager.git
				synced 2025-10-30 23:33:34 +00:00 
			
		
		
		
	
		
			
				
	
	
		
			124 lines
		
	
	
		
			2.1 KiB
		
	
	
	
		
			Plaintext
		
	
	
	
	
	
			
		
		
	
	
			124 lines
		
	
	
		
			2.1 KiB
		
	
	
	
		
			Plaintext
		
	
	
	
	
	
| {
 | |
| 	"parser": "@typescript-eslint/parser",
 | |
| 	"plugins": [
 | |
| 		"prettier",
 | |
| 	],
 | |
| 	"extends": [
 | |
| 		"react-app",
 | |
| 		"eslint-config-prettier",
 | |
| 		"plugin:prettier/recommended",
 | |
| 		"prettier"
 | |
| 	],
 | |
| 	"env": {
 | |
| 		"jest": true,
 | |
| 		"browser": true,
 | |
| 		"commonjs": true
 | |
| 	},
 | |
| 	"rules": {
 | |
| 		"prettier/prettier": [
 | |
| 			"error"
 | |
| 		],
 | |
| 		"@typescript-eslint/ban-ts-comment": [
 | |
| 			"error",
 | |
| 			{
 | |
| 				"ts-ignore": "allow-with-description"
 | |
| 			}
 | |
| 		],
 | |
| 		"@typescript-eslint/consistent-type-definitions": [
 | |
| 			"error",
 | |
| 			"interface"
 | |
| 		],
 | |
| 		"@typescript-eslint/explicit-function-return-type": [
 | |
| 			"off"
 | |
| 		],
 | |
| 		"@typescript-eslint/explicit-module-boundary-types": [
 | |
| 			"off"
 | |
| 		],
 | |
| 		"@typescript-eslint/explicit-member-accessibility": [
 | |
| 			"off"
 | |
| 		],
 | |
| 		"@typescript-eslint/no-empty-function": [
 | |
| 			"off"
 | |
| 		],
 | |
| 		"@typescript-eslint/no-explicit-any": [
 | |
| 			"off"
 | |
| 		],
 | |
| 		"@typescript-eslint/no-non-null-assertion": [
 | |
| 			"off"
 | |
| 		],
 | |
| 		"@typescript-eslint/naming-convention": [
 | |
| 			"error",
 | |
| 			{
 | |
| 				"selector": "default",
 | |
| 				"format": [
 | |
| 					"camelCase",
 | |
| 					"PascalCase",
 | |
| 					"UPPER_CASE"
 | |
| 				],
 | |
| 				"leadingUnderscore": "allow",
 | |
| 				"trailingUnderscore": "allow"
 | |
| 			}
 | |
| 		],
 | |
| 		"react-hooks/rules-of-hooks": [
 | |
| 			"error"
 | |
| 		],
 | |
| 		"react-hooks/exhaustive-deps": [
 | |
| 			"warn",
 | |
| 			{
 | |
| 				"additionalHooks": "useAction|useReduxAction"
 | |
| 			}
 | |
| 		],
 | |
| 		"react/jsx-curly-brace-presence": [
 | |
| 			"warn",
 | |
| 			{
 | |
| 				"props": "never",
 | |
| 				"children": "never",
 | |
| 			}
 | |
| 		],
 | |
| 		"no-restricted-globals": [
 | |
| 			"off"
 | |
| 		],
 | |
| 		"import/extensions": 0, // We let webpack handle resolving file extensions
 | |
| 		"import/order": [
 | |
| 			"error",
 | |
| 			{
 | |
| 				"alphabetize": {
 | |
| 					"order": "asc",
 | |
| 					"caseInsensitive": true
 | |
| 				},
 | |
| 				"newlines-between": "always",
 | |
| 				"pathGroups": [
 | |
| 					{
 | |
| 						"pattern": "@(react)",
 | |
| 						"group": "external",
 | |
| 						"position": "before"
 | |
| 					},
 | |
| 					{
 | |
| 						"pattern": "@/@(fixtures|jest)/**",
 | |
| 						"group": "internal",
 | |
| 						"position": "before"
 | |
| 					},
 | |
| 					{
 | |
| 						"pattern": "@/**",
 | |
| 						"group": "internal"
 | |
| 					}
 | |
| 				],
 | |
| 				"pathGroupsExcludedImportTypes": [
 | |
| 					"builtin",
 | |
| 					"internal"
 | |
| 				],
 | |
| 				"groups": [
 | |
| 					"builtin",
 | |
| 					"external",
 | |
| 					"internal",
 | |
| 					[
 | |
| 						"parent",
 | |
| 						"sibling",
 | |
| 						"index"
 | |
| 					]
 | |
| 				]
 | |
| 			}
 | |
| 		]
 | |
| 	}
 | |
| }
 |