-
Notifications
You must be signed in to change notification settings - Fork 0
/
spider.yaml
42 lines (34 loc) · 1.16 KB
/
spider.yaml
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
# Generated by Spider
# For more info on configuration, visit https://birjuvachhani.github.io/spider/grouping/
# Generates unit tests to verify that the assets exists in assets directory
generate_tests: true
# Use this to remove vcs noise created by the `generated` comments in dart code
no_comments: true
# Exports all the generated file as the one library
export: true
# This allows you to import all the generated references with 1 single import!
use_part_of: true
# Generates a variable that contains a list of all asset values.
use_references_list: true
# Generates files with given ignore rules for file.
# ignored_rules:
# - public_member_api_docs
# Generates dart font family references for fonts specified in pubspec.yaml
# fonts: true
# -------- OR --------
# fonts:
# class_name: MyFonts
# file_name: my_fonts
# Location where all the generated references will be stored
package: core/assets/res/
groups:
- path: assets/images
prefix: img
class_name: AppImages
file_name: images
types: [.png, .jpg, .jpeg, .webp, .webm, .bmp, .gif]
- path: assets/icons
prefix: ic
class_name: AppSvgIcons
file_name: svg_icons
types: [.svg]