File tree 3 files changed +1037
-598
lines changed
3 files changed +1037
-598
lines changed Original file line number Diff line number Diff line change 100
100
"pinst" : " 3.0.0" ,
101
101
"power-assert" : " 1.6.1" ,
102
102
"regenerator-runtime" : " 0.14.1" ,
103
- "xo" : " 0.53.1 "
103
+ "xo" : " 0.57.0 "
104
104
},
105
105
"ava" : {
106
106
"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 @@ -2,6 +2,7 @@ import test from 'ava';
2
2
3
3
import { list } from '@iterable-iterator/list' ;
4
4
import { range } from '@iterable-iterator/range' ;
5
+
5
6
import { combinations } from '#module' ;
6
7
7
8
const repr = ( x ) => ( Array . isArray ( x ) ? JSON . stringify ( x ) : x ) ;
You can’t perform that action at this time.
0 commit comments