Requires imports to be alphabetised
Types: Boolean
Values: true
to require imports to be ordered (A-Z)
"requireImportAlphabetized": true
import a from 'a';
import c from 'c';
import z from 'z';
import a from 'a';
import z from 'z';
import c from 'c';