generated from actions/javascript-action
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathignore-files.js
114 lines (114 loc) · 3.73 KB
/
ignore-files.js
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
module.exports = Object.freeze({
// Updated with JsPsych 8
IGNORE_FILE: [
"extension-mouse-tracking.js",
"extension-record-video.js",
"extension-webgazer.js",
"jspsych.css",
"jspsych.js",
"plugin-animation.js",
"plugin-audio-button-response.js",
"plugin-audio-keyboard-response.js",
"plugin-audio-slider-response.js",
"plugin-browser-check.js",
"plugin-call-function.js",
"plugin-canvas-button-response.js",
"plugin-canvas-keyboard-response.js",
"plugin-canvas-slider-response.js",
"plugin-categorize-animation.js",
"plugin-categorize-html.js",
"plugin-categorize-image.js",
"plugin-cloze.js",
"plugin-external-html.js",
"plugin-free-sort.js",
"plugin-fullscreen.js",
"plugin-html-audio-response.js",
"plugin-html-button-response.js",
"plugin-html-keyboard-response.js",
"plugin-html-slider-response.js",
"plugin-html-video-response.js",
"plugin-iat-html.js",
"plugin-iat-image.js",
"plugin-image-button-response.js",
"plugin-image-keyboard-response.js",
"plugin-image-slider-response.js",
"plugin-initialize-camera.js",
"plugin-initialize-microphone.js",
"plugin-instructions.js",
"plugin-maxdiff.js",
"plugin-mirror-camera.js",
"plugin-preload.js",
"plugin-reconstruction.js",
"plugin-resize.js",
"plugin-same-different-html.js",
"plugin-same-different-image.js",
"plugin-serial-reaction-time.js",
"plugin-serial-reaction-time-mouse.js",
"plugin-sketchpad.js",
"plugin-survey.js",
"plugin-survey-html-form.js",
"plugin-survey-likert.js",
"plugin-survey-multi-choice.js",
"plugin-survey-multi-select.js",
"plugin-survey-text.js",
"plugin-video-button-response.js",
"plugin-video-keyboard-response.js",
"plugin-video-slider-response.js",
"plugin-virtual-chinrest.js",
"plugin-visual-search-circle.js",
"plugin-webgazer-calibrate.js",
"plugin-webgazer-init-camera.js",
"plugin-webgazer-validate.js",
"survey.css",
"test-utils.js",
"jspsych-ext-webgazer.js",
"jspsych-animation.js",
"jspsych-audio-button-response.js",
"jspsych-audio-keyboard-response.js",
"jspsych-audio-slider-response.js",
"jspsych-call-function.js",
"jspsych-canvas-button-response.js",
"jspsych-canvas-keyboard-response.js",
"jspsych-canvas-slider-response.js",
"jspsych-categorize-animation.js",
"jspsych-categorize-html.js",
"jspsych-categorize-image.js",
"jspsych-cloze.js",
"jspsych-external-html.js",
"jspsych-free-sort.js",
"jspsych-fullscreen.js",
"jspsych-html-button-response.js",
"jspsych-html-keyboard-response.js",
"jspsych-html-slider-response.js",
"jspsych-iat-html.js",
"jspsych-iat-image.js",
"jspsych-image-button-response.js",
"jspsych-image-keyboard-response.js",
"jspsych-image-slider-response.js",
"jspsych-instructions.js",
"jspsych-maxdiff.js",
"jspsych-preload.js",
"jspsych-rdk.js",
"jspsych-reconstruction.js",
"jspsych-resize.js",
"jspsych-same-different-html.js",
"jspsych-same-different-image.js",
"jspsych-serial-reaction-time-mouse.js",
"jspsych-serial-reaction-time.js",
"jspsych-survey-html-form.js",
"jspsych-survey-likert.js",
"jspsych-survey-multi-choice.js",
"jspsych-survey-multi-select.js",
"jspsych-survey-text.js",
"jspsych-video-button-response.js",
"jspsych-video-keyboard-response.js",
"jspsych-video-slider-response.js",
"jspsych-virtual-chinrest.js",
"jspsych-visual-search-circle.js",
"jspsych-vsl-animate-occlusion.js",
"jspsych-vsl-grid-scene.js",
"jspsych-webgazer-calibrate.js",
"jspsych-webgazer-init-camera.js",
"jspsych-webgazer-validate.js",
],
});