This repository has been archived by the owner on Oct 17, 2021. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 5
/
Copy path.lintr
122 lines (122 loc) · 4.64 KB
/
.lintr
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
linters: with_defaults(
line_length_linter(120),
trailing_blank_lines_linter = NULL, # 6
object_name_linter = NULL, # 2
dummy_linter = NULL
)
exclusions: list(
"data/fp_binding_data.rda",
"data/fret_binding_data.rda",
"docs/articles/analyzing_fp_data.html",
"docs/articles/analyzing_fret_data_files/figure-html/Figure making-1.png",
"docs/articles/analyzing_fret_data_files/figure-html/Inspect raw data-1.png",
"docs/articles/analyzing_fret_data_files/figure-html/Inspect raw data-2.png",
"docs/articles/analyzing_fret_data_files/figure-html/Inspect raw data-3.png",
"docs/articles/analyzing_fret_data.html",
"docs/articles/extending_rfret.html",
"docs/articles/hyperbolic_model_equation.html",
"docs/articles/index.html",
"docs/articles/quadratic_model_equation.html",
"docs/articles/setting_up_fret_experiment.html",
"docs/authors.html",
"docs/index.html",
"docs/jquery.sticky-kit.min.js",
"docs/LICENSE.html",
"docs/link.svg",
"docs/pkgdown.css",
"docs/pkgdown.js",
"docs/reference/detect_binding_model.html",
"docs/reference/fit_binding_model.html",
"docs/reference/fit_hill.html",
"docs/reference/fit_hyperbolic.html",
"docs/reference/fit_quadratic.html",
"docs/reference/fp_average_replicates.html",
"docs/reference/fp_binding_data.html",
"docs/reference/fp_calculate_pola_aniso_int.html",
"docs/reference/fp_calculate_polarization_anisotropy.html",
"docs/reference/fp_format_data.html",
"docs/reference/fp_format_one_dataset.html",
"docs/reference/fp_inspect_one_dataset.html",
"docs/reference/fp_inspect_raw_data.html",
"docs/reference/fp_save_inspection_plot.html",
"docs/reference/fp_use_signal.html",
"docs/reference/fret_average_replicates.html",
"docs/reference/fret_binding_data.html",
"docs/reference/fret_correct_one_dataset.html",
"docs/reference/fret_correct_signal.html",
"docs/reference/fret_format_data.html",
"docs/reference/fret_format_one_dataset.html",
"docs/reference/fret_inspect_one_dataset.html",
"docs/reference/fret_inspect_raw_data.html",
"docs/reference/fret_job_plot.html",
"docs/reference/fret_save_inspection_plots.html",
"docs/reference/get_user_metadata.html",
"docs/reference/guess_parameters.html",
"docs/reference/hill.html",
"docs/reference/hyperbolic.html",
"docs/reference/index.html",
"docs/reference/load_data.html",
"docs/reference/make_figure.html",
"docs/reference/make_one_figure.html",
"docs/reference/plan_experiment.html",
"docs/reference/quadratic.html",
"docs/reference/read_files.html",
"docs/reference/rfret.html",
"inst/doc/analyzing_fp_data.html",
"inst/doc/analyzing_fp_data.R",
"inst/doc/analyzing_fp_data.Rmd",
"inst/doc/analyzing_fret_data.html",
"inst/doc/analyzing_fret_data.R",
"inst/doc/analyzing_fret_data.Rmd",
"inst/doc/extending_rfret.html",
"inst/doc/extending_rfret.R",
"inst/doc/extending_rfret.Rmd",
"inst/doc/hyperbolic_model_equation.html",
"inst/doc/hyperbolic_model_equation.R",
"inst/doc/hyperbolic_model_equation.Rmd",
"inst/doc/quadratic_model_equation.html",
"inst/doc/quadratic_model_equation.R",
"inst/doc/quadratic_model_equation.Rmd",
"inst/doc/setting_up_fret_experiment.html",
"inst/doc/setting_up_fret_experiment.R",
"inst/doc/setting_up_fret_experiment.Rmd",
"man/detect_binding_model.Rd",
"man/fit_binding_model.Rd",
"man/fit_hill.Rd",
"man/fit_hyperbolic.Rd",
"man/fit_quadratic.Rd",
"man/format_data.Rd",
"man/fp_average_replicates.Rd",
"man/fp_binding_data.Rd",
"man/fp_calculate_pola_aniso_int.Rd",
"man/fp_format_one_dataset.Rd",
"man/fp_inspect_one_dataset.Rd",
"man/fp_save_inspection_plot.Rd",
"man/fp_use_signal.Rd",
"man/fret_average_replicates.Rd",
"man/fret_binding_data.Rd",
"man/fret_correct_one_dataset.Rd",
"man/fret_correct_signal.Rd",
"man/fret_format_one_dataset.Rd",
"man/fret_inspect_one_dataset.Rd",
"man/fret_job_plot.Rd",
"man/fret_save_inspection_plots.Rd",
"man/get_user_metadata.Rd",
"man/guess_parameters.Rd",
"man/hill.Rd",
"man/hyperbolic.Rd",
"man/inspect_raw_data.Rd",
"man/load_data.Rd",
"man/make_figure.Rd",
"man/make_one_figure.Rd",
"man/plan_experiment.Rd",
"man/quadratic.Rd",
"man/read_files.Rd",
"man/rfret.Rd",
"vignettes/analyzing_fp_data.Rmd",
"vignettes/analyzing_fret_data.Rmd",
"vignettes/extending_rfret.Rmd",
"vignettes/hyperbolic_model_equation.Rmd",
"vignettes/quadratic_model_equation.Rmd",
"vignettes/setting_up_fret_experiment.Rmd"
)