-
Notifications
You must be signed in to change notification settings - Fork 5
/
spider.yaml
37 lines (30 loc) · 1.12 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
# 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: false
# 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: false
# Generates files with given ignore rules for file.
# ignored_rules:
# - public_member_api_docs
# Location where all the generated references will be stored
package: resources
groups:
- path: assets/
class_name: Images
types: [ .png, .jpg, .jpeg, .webp, .webm, .bmp ]
- path: assets/vectors
class_name: Vectors
types: [ .svg ]
- path: assets/app_icons
class_name: AppIcons
types: [ .png, .jpg, .jpeg, .webp, .webm, .bmp ]
- path: assets/system_tray_icons
class_name: SystemTrayIcons
types: [ .png, .jpg, .jpeg, .webp, .webm, .bmp, .ico ]