File tree 4 files changed +1042
-612
lines changed
4 files changed +1042
-612
lines changed Original file line number Diff line number Diff line change 107
107
"pinst" : " 3.0.0" ,
108
108
"power-assert" : " 1.6.1" ,
109
109
"regenerator-runtime" : " 0.14.1" ,
110
- "xo" : " 0.53.1 "
110
+ "xo" : " 0.57.0 "
111
111
},
112
112
"ava" : {
113
113
"files" : [
223
223
}
224
224
],
225
225
"unicorn/prefer-node-protocol" : " off" ,
226
- "unicorn/prevent-abbreviations" : " off"
226
+ "unicorn/prevent-abbreviations" : " off" ,
227
+ "import/order" : [
228
+ " error" ,
229
+ {
230
+ "groups" : [
231
+ " builtin" ,
232
+ " external" ,
233
+ " internal" ,
234
+ " parent" ,
235
+ " sibling" ,
236
+ " index" ,
237
+ " object" ,
238
+ " type"
239
+ ],
240
+ "pathGroups" : [
241
+ {
242
+ "pattern" : " ava" ,
243
+ "group" : " external" ,
244
+ "position" : " before"
245
+ },
246
+ {
247
+ "pattern" : " #module" ,
248
+ "group" : " index" ,
249
+ "position" : " after"
250
+ }
251
+ ],
252
+ "pathGroupsExcludedImportTypes" : [],
253
+ "distinctGroup" : true ,
254
+ "newlines-between" : " always" ,
255
+ "alphabetize" : {
256
+ "order" : " asc" ,
257
+ "orderImportKind" : " asc" ,
258
+ "caseInsensitive" : false
259
+ },
260
+ "warnOnUnassignedImports" : true
261
+ }
262
+ ]
227
263
},
228
264
"overrides" : [
229
265
{
Original file line number Diff line number Diff line change 1
- import { PairingHeap as Heap } from '@heap-data-structure/pairing-heap' ;
2
1
import { EfficientlyInvertiblePairs as Pairs } from '@collection-abstraction/pairs' ;
2
+ import { PairingHeap as Heap } from '@heap-data-structure/pairing-heap' ;
3
3
4
4
import subroutine from './subroutine.js' ;
5
5
Original file line number Diff line number Diff line change 1
1
import test from 'ava' ;
2
2
3
- import { map } from '@iterable-iterator/map' ;
3
+ import { counter } from '@collection-abstraction/counter' ;
4
+ import { EfficientlyInvertiblePairs as Pairs } from '@collection-abstraction/pairs' ;
4
5
import { list } from '@iterable-iterator/list' ;
6
+ import { map } from '@iterable-iterator/map' ;
5
7
import { range } from '@iterable-iterator/range' ;
6
- import { increasing , decreasing } from '@total-order/primitive' ;
7
- import { colexicographical } from '@total-order/lex' ;
8
8
import { key } from '@total-order/key' ;
9
- import { EfficientlyInvertiblePairs as Pairs } from '@collection-abstraction/pairs' ;
10
- import { counter } from '@collection-abstraction/counter' ;
9
+ import { colexicographical } from '@total-order/lex' ;
10
+ import { increasing , decreasing } from '@total-order/primitive' ;
11
+
11
12
import { sorted } from '#module' ;
12
13
13
14
// https://en.wikipedia.org/wiki/Topological_sorting
You can’t perform that action at this time.
0 commit comments