File tree
48 files changed
+7472
-37
lines changed- .github
- workflows
- benchmark
- dist
- docs
- types
- examples
- lib
- test
- dist
Some content is hidden
Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.
48 files changed
+7472
-37
lines changedLines changed: 181 additions & 0 deletions
@@ -0,0 +1,181 @@
1
+#/
2
+# @license Apache-2.0
3
+#
4
+# Copyright (c) 2017 The Stdlib Authors.
5
+#
6
+# Licensed under the Apache License, Version 2.0 (the "License");
7
+# you may not use this file except in compliance with the License.
8
+# You may obtain a copy of the License at
9
+#
10
+# http://www.apache.org/licenses/LICENSE-2.0
11
+#
12
+# Unless required by applicable law or agreed to in writing, software
13
+# distributed under the License is distributed on an "AS IS" BASIS,
14
+# WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
15
+# See the License for the specific language governing permissions and
16
+# limitations under the License.
17
+#/
18
+
19
+# EditorConfig configuration file (see <http://editorconfig.org/>).
20
+
21
+# Indicate that this file is a root-level configuration file:
22
+root = true
23
+
24
+# Set properties for all files:
25
+[*]
26
+end_of_line = lf
27
+charset = utf-8
28
+trim_trailing_whitespace = true
29
+insert_final_newline = true
30
+
31
+# Set properties for JavaScript files:
32
+[*.{js,js.txt}]
33
+indent_style = tab
34
+
35
+# Set properties for JavaScript ES module files:
36
+[*.{mjs,mjs.txt}]
37
+indent_style = tab
38
+
39
+# Set properties for JavaScript CommonJS files:
40
+[*.{cjs,cjs.txt}]
41
+indent_style = tab
42
+
43
+# Set properties for JSON files:
44
+[*.{json,json.txt}]
45
+indent_style = space
46
+indent_size = 2
47
+
48
+# Set properties for `cli_opts.json` files:
49
+[cli_opts.json]
50
+indent_style = tab
51
+
52
+# Set properties for TypeScript files:
53
+[*.ts]
54
+indent_style = tab
55
+
56
+# Set properties for Python files:
57
+[*.{py,py.txt}]
58
+indent_style = space
59
+indent_size = 4
60
+
61
+# Set properties for Julia files:
62
+[*.{jl,jl.txt}]
63
+indent_style = tab
64
+
65
+# Set properties for R files:
66
+[*.{R,R.txt}]
67
+indent_style = tab
68
+
69
+# Set properties for C files:
70
+[*.{c,c.txt}]
71
+indent_style = tab
72
+
73
+# Set properties for C header files:
74
+[*.{h,h.txt}]
75
+indent_style = tab
76
+
77
+# Set properties for C++ files:
78
+[*.{cpp,cpp.txt}]
79
+indent_style = tab
80
+
81
+# Set properties for C++ header files:
82
+[*.{hpp,hpp.txt}]
83
+indent_style = tab
84
+
85
+# Set properties for Fortran files:
86
+[*.{f,f.txt}]
87
+indent_style = space
88
+indent_size = 2
89
+insert_final_newline = false
90
+
91
+# Set properties for shell files:
92
+[*.{sh,sh.txt}]
93
+indent_style = tab
94
+
95
+# Set properties for AWK files:
96
+[*.{awk,awk.txt}]
97
+indent_style = tab
98
+
99
+# Set properties for HTML files:
100
+[*.{html,html.txt}]
101
+indent_style = tab
102
+tab_width = 2
103
+
104
+# Set properties for XML files:
105
+[*.{xml,xml.txt}]
106
+indent_style = tab
107
+tab_width = 2
108
+
109
+# Set properties for CSS files:
110
+[*.{css,css.txt}]
111
+indent_style = tab
112
+
113
+# Set properties for Makefiles:
114
+[Makefile]
115
+indent_style = tab
116
+
117
+[*.{mk,mk.txt}]
118
+indent_style = tab
119
+
120
+# Set properties for Markdown files:
121
+[*.{md,md.txt}]
122
+indent_style = space
123
+indent_size = 4
124
+trim_trailing_whitespace = false
125
+
126
+# Set properties for `usage.txt` files:
127
+[usage.txt]
128
+indent_style = space
129
+indent_size = 2
130
+
131
+# Set properties for `repl.txt` files:
132
+[repl.txt]
133
+indent_style = space
134
+indent_size = 4
135
+
136
+# Set properties for `package.json` files:
137
+[package.{json,json.txt}]
138
+indent_style = space
139
+indent_size = 2
140
+
141
+# Set properties for `datapackage.json` files:
142
+[datapackage.json]
143
+indent_style = space
144
+indent_size = 2
145
+
146
+# Set properties for `manifest.json` files:
147
+[manifest.json]
148
+indent_style = space
149
+indent_size = 2
150
+
151
+# Set properties for `tsconfig.json` files:
152
+[tsconfig.json]
153
+indent_style = space
154
+indent_size = 2
155
+
156
+# Set properties for LaTeX files:
157
+[*.{tex,tex.txt}]
158
+indent_style = tab
159
+
160
+# Set properties for LaTeX Bibliography files:
161
+[*.{bib,bib.txt}]
162
+indent_style = tab
163
+
164
+# Set properties for YAML files:
165
+[*.{yml,yml.txt}]
166
+indent_style = space
167
+indent_size = 2
168
+
169
+# Set properties for GYP files:
170
+[binding.gyp]
171
+indent_style = space
172
+indent_size = 2
173
+
174
+[*.gypi]
175
+indent_style = space
176
+indent_size = 2
177
+
178
+# Set properties for citation files:
179
+[*.{cff,cff.txt}]
180
+indent_style = space
181
+indent_size = 2
Lines changed: 1 addition & 0 deletions
Original file line number | Diff line number | Diff line change | |
---|---|---|---|
| |||
| 1 | + |
Lines changed: 66 additions & 0 deletions
Original file line number | Diff line number | Diff line change | |
---|---|---|---|
| |||
| 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 | + |
Lines changed: 1 addition & 0 deletions
Original file line number | Diff line number | Diff line change | |
---|---|---|---|
| |||
| 1 | + |
Lines changed: 7 additions & 0 deletions
Original file line number | Diff line number | Diff line change | |
---|---|---|---|
| |||
| 1 | + | |
| 2 | + | |
| 3 | + | |
| 4 | + | |
| 5 | + | |
| 6 | + | |
| 7 | + |
Lines changed: 64 additions & 0 deletions
Original file line number | Diff line number | Diff line change | |
---|---|---|---|
| |||
| 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 | + |
Lines changed: 57 additions & 0 deletions
Original file line number | Diff line number | Diff line change | |
---|---|---|---|
| |||
| 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 | + |
0 commit comments