-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathchecklist.json
163 lines (163 loc) · 4.06 KB
/
checklist.json
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
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
{
"make_reusable_and_composable":[
{
"name":"Learn the 17 Rules of Unix philosophy",
"name_pt_br":"",
"link":"https://en.wikipedia.org/wiki/Unix_philosophy"
},
{
"name":"Learn about Atomic Design",
"name_pt_br":"",
"link":"http://bradfrost.com/blog/post/atomic-web-design/"
}
],
"cover_the_basics":[
{
"name":"Make Responsive",
"name_pt_br":"",
"link":"https://en.wikipedia.org/wiki/Responsive_web_design"
},
{
"name":"When necessary, think in Progressive enhancement",
"name_pt_br":"",
"link":"https://en.wikipedia.org/wiki/Progressive_enhancement"
}
],
"make_maintainable":[
{
"name":"Follow the Semantic Versioning",
"name_pt_br":"",
"link":"http://semver.org/"
},
{
"name":"Use _ as a prefix convention for private methods",
"name_pt_br":"",
"link":"#"
},
{
"name":"Lint with eslint",
"name_pt_br":"",
"link":"http://eslint.org/"
},
{
"name":"Write unit tests",
"name_pt_br":"",
"link":"#"
},
{
"name":"Write the UI regression test with whatever you want",
"name_pt_br":"",
"link":"https://github.com/Huddle/PhantomCSS"
},
{
"name":"Run the tests in all browser with Source Labs",
"name_pt_br":"",
"link":"https://saucelabs.com/"
},
{
"name":"Integrate all tests with CI",
"name_pt_br":"",
"link":"https://travis-ci.org/"
}
],
"improve_performance":[
{
"name":"Optimize first paint",
"name_pt_br":"",
"link":"https://www.smashingmagazine.com/2016/12/front-end-performance-checklist-2017-pdf-pages/"
},
{
"name":"Write a test for first paint performance",
"name_pt_br":"",
"link":"https://youtu.be/zfQoleQEa4w?t=1307"
},
{
"name":"Implement do less & be lazy concepts",
"name_pt_br":"",
"link":"https://youtu.be/zfQoleQEa4w?t=1386"
}
],
"a11y":[
{
"name":"Add Aria labels",
"name_pt_br":"",
"link":"https://www.youtube.com/watch?v=g9Qff0b-lHk&index=4&list=PLNYkxOF6rcICWx0C9LVWWVqvHlYJyqw7g"
},
{
"name":"Use the focus event",
"name_pt_br":"",
"link":"https://www.youtube.com/watch?v=EFv9ubbZLKw&index=14&list=PLNYkxOF6rcICWx0C9LVWWVqvHlYJyqw7g"
},
{
"name":"Think in tab index order",
"name_pt_br":"",
"link":"https://www.youtube.com/watch?v=Pe0Ce1WtnUM&index=13&list=PLNYkxOF6rcICWx0C9LVWWVqvHlYJyqw7g"
},
{
"name":"Test all with Accessibility Developer Tools",
"name_pt_br":"",
"link":"https://github.com/GoogleChrome/accessibility-developer-tools"
}
],
"make_customizable":[
{
"name":"Use custom properties and expose the API for users with docs",
"name_pt_br":"",
"link":"https://www.w3.org/TR/css-variables/"
}
],
"document_all":[
{
"name":"Provide a quick demo",
"name_pt_br":"",
"link":"#"
},
{
"name":"Provide a full demo (Polymer iron-demo-helpers is recommended)",
"name_pt_br":"",
"link":"https://github.com/PolymerElements/iron-demo-helpers"
},
{
"name":"Describe how to download and use the component",
"name_pt_br":"",
"link":"#"
},
{
"name":"Describe how to style the component",
"name_pt_br":"",
"link":"#"
},
{
"name":"Specify the component support",
"name_pt_br":"",
"link":"#"
},
{
"name":"Describe your API",
"name_pt_br":"",
"link":"#"
},
{
"name":"Describe how to run the development environment",
"name_pt_br":"",
"link":"#"
},
{
"name":"Describe how to run all the tests",
"name_pt_br":"",
"link":"#"
}
],
"publish_to_the_world":[
{
"name":"Publish in bower or npm",
"name_pt_br":"",
"link":"#"
},
{
"name":"Publish in webcomponents.org following the requirements",
"name_pt_br":"",
"link":"https://www.webcomponents.org/publish"
}
]
}