File tree 4 files changed +1094
-478
lines changed
4 files changed +1094
-478
lines changed Original file line number Diff line number Diff line change 101
101
"pinst" : " 3.0.0" ,
102
102
"power-assert" : " 1.6.1" ,
103
103
"regenerator-runtime" : " 0.14.0" ,
104
- "xo" : " 0.53.1 "
104
+ "xo" : " 0.57.0 "
105
105
},
106
106
"ava" : {
107
107
"files" : [
219
219
}
220
220
],
221
221
"unicorn/prefer-node-protocol" : " off" ,
222
- "unicorn/prevent-abbreviations" : " off"
222
+ "unicorn/prevent-abbreviations" : " off" ,
223
+ "import/order" : [
224
+ " error" ,
225
+ {
226
+ "groups" : [
227
+ " builtin" ,
228
+ " external" ,
229
+ " internal" ,
230
+ " parent" ,
231
+ " sibling" ,
232
+ " index" ,
233
+ " object" ,
234
+ " type"
235
+ ],
236
+ "pathGroups" : [
237
+ {
238
+ "pattern" : " ava" ,
239
+ "group" : " external" ,
240
+ "position" : " before"
241
+ },
242
+ {
243
+ "pattern" : " #module" ,
244
+ "group" : " index" ,
245
+ "position" : " after"
246
+ }
247
+ ],
248
+ "pathGroupsExcludedImportTypes" : [],
249
+ "distinctGroup" : true ,
250
+ "newlines-between" : " always" ,
251
+ "alphabetize" : {
252
+ "order" : " asc" ,
253
+ "orderImportKind" : " asc" ,
254
+ "caseInsensitive" : false
255
+ },
256
+ "warnOnUnassignedImports" : true
257
+ }
258
+ ]
223
259
},
224
260
"overrides" : [
225
261
{
Original file line number Diff line number Diff line change 1
- import { Trie , ObjectNode } from '@trie-data-structure/uncompressed-trie' ;
2
1
import { push , iter } from '@functional-data-structure/persistent-stack' ;
2
+ import { Trie , ObjectNode } from '@trie-data-structure/uncompressed-trie' ;
3
3
4
4
/**
5
5
* Simple Lempel-Ziv lossless data compression algorithm implementation.
Original file line number Diff line number Diff line change 1
- import * as importMapLoader from '@node-loader/import-maps' ;
2
1
import * as babelLoader from '@node-loader/babel' ;
2
+ import * as importMapLoader from '@node-loader/import-maps' ;
3
3
4
4
const config = {
5
5
loaders : [ importMapLoader , babelLoader ] ,
You can’t perform that action at this time.
0 commit comments