Skip to content

Latest commit

 

History

History
18 lines (14 loc) · 476 Bytes

specifier-order.md

File metadata and controls

18 lines (14 loc) · 476 Bytes

Consistently order named import specifiers (import-sorting/specifier-order)

🔧 This rule is automatically fixable by the --fix CLI option.

Specifiers are sorted naturally, the same as imports within groups. type keywords are ignored during sorting.

export default [
	{
		rules: {
			'import-sorting/specifier-order': 'error',
		},
	},
]