| 
1065 | 1065 |     # scrapy-feedexporter-google-sheets plugin settings, in order of appearance  | 
1066 | 1066 |     # in https://github.com/scrapy-plugins/scrapy-feedexporter-google-sheets  | 
1067 | 1067 |     "GOOGLE_CREDENTIALS": Setting(package="scrapy-feedexporter-google-sheets"),  | 
 | 1068 | +    # scrapy-fieldstats plugin settings, in order of appearance in  | 
 | 1069 | +    # https://github.com/stummjr/scrapy-fieldstats  | 
 | 1070 | +    "FIELDSTATS_ENABLED": Setting(  | 
 | 1071 | +        package="scrapy-fieldstats",  | 
 | 1072 | +        type=SettingType.BOOL,  | 
 | 1073 | +        default_value=VersionedValue(False),  | 
 | 1074 | +    ),  | 
 | 1075 | +    "FIELDSTATS_COUNTS_ONLY": Setting(  | 
 | 1076 | +        package="scrapy-fieldstats",  | 
 | 1077 | +        type=SettingType.BOOL,  | 
 | 1078 | +        default_value=VersionedValue(False),  | 
 | 1079 | +    ),  | 
 | 1080 | +    "FIELDSTATS_SKIP_NONE": Setting(  | 
 | 1081 | +        package="scrapy-fieldstats",  | 
 | 1082 | +        type=SettingType.BOOL,  | 
 | 1083 | +        default_value=VersionedValue(False),  | 
 | 1084 | +    ),  | 
 | 1085 | +    "FIELDSTATS_ADD_TO_STATS": Setting(  | 
 | 1086 | +        package="scrapy-fieldstats",  | 
 | 1087 | +        type=SettingType.BOOL,  | 
 | 1088 | +        default_value=VersionedValue(False),  | 
 | 1089 | +    ),  | 
1068 | 1090 |     # hcf-backend plugin settings, in order of appearance in  | 
1069 | 1091 |     # https://github.com/scrapinghub/hcf-backend/blob/master/hcf_backend/backend.py  | 
1070 | 1092 |     "HCF_CONSUMER_MAX_REQUESTS": Setting(package="hcf-backend"),  | 
 | 
0 commit comments