File tree Expand file tree Collapse file tree 1 file changed +19
-23
lines changed Expand file tree Collapse file tree 1 file changed +19
-23
lines changed Original file line number Diff line number Diff line change @@ -858,12 +858,9 @@ module.exports = {
858858 properties : {
859859 groups : {
860860 type : 'array' ,
861- // Verified manually in the convertGroupsToRanks function
862861 } ,
863862 pathGroupsExcludedImportTypes : {
864863 type : 'array' ,
865- uniqueItems : true ,
866- items : { enum : types } ,
867864 } ,
868865 distinctGroup : {
869866 type : 'boolean' ,
@@ -921,28 +918,27 @@ module.exports = {
921918 } ,
922919 named : {
923920 default : false ,
924- oneOf : [
925- { type : 'boolean' } ,
926- {
927- type : 'object' ,
928- properties : {
929- enabled : { type : 'boolean' } ,
930- import : { type : 'boolean' } ,
931- export : { type : 'boolean' } ,
932- require : { type : 'boolean' } ,
933- cjsExports : { type : 'boolean' } ,
934- types : {
935- type : 'string' ,
936- enum : [
937- 'mixed' ,
938- 'types-first' ,
939- 'types-last' ,
940- ] ,
941- } ,
921+ oneOf : [ {
922+ type : 'boolean' ,
923+ } , {
924+ type : 'object' ,
925+ properties : {
926+ enabled : { type : 'boolean' } ,
927+ import : { type : 'boolean' } ,
928+ export : { type : 'boolean' } ,
929+ require : { type : 'boolean' } ,
930+ cjsExports : { type : 'boolean' } ,
931+ types : {
932+ type : 'string' ,
933+ enum : [
934+ 'mixed' ,
935+ 'types-first' ,
936+ 'types-last' ,
937+ ] ,
942938 } ,
943- additionalProperties : false ,
944939 } ,
945- ] ,
940+ additionalProperties : false ,
941+ } ] ,
946942 } ,
947943 alphabetize : {
948944 type : 'object' ,
You can’t perform that action at this time.
0 commit comments