UNPKG

292 BJavaScriptView Raw
1module.exports = {
2 plugins: ['sort-imports-es6-autofix'],
3 rules: {
4 'sort-imports-es6-autofix/sort-imports-es6': [
5 2,
6 {
7 ignoreCase: true,
8 ignoreMemberSort: false,
9 memberSyntaxSortOrder: ['none', 'all', 'multiple', 'single'],
10 },
11 ],
12 },
13};