Skip to content
This repository was archived by the owner on Feb 4, 2024. It is now read-only.

Commit 38749c7

Browse files
committed
🎉 Initial commit
0 parents  commit 38749c7

7 files changed

Lines changed: 374 additions & 0 deletions

File tree

.gitignore

Lines changed: 15 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,15 @@
1+
# Files and directories created by pub.
2+
.dart_tool/
3+
.packages
4+
5+
# Conventional directory for build output.
6+
build/
7+
8+
# IDE specific
9+
.idea/
10+
11+
# macOS specific
12+
.DS_Store
13+
14+
bin/query_cache/
15+
sign.sh

CHANGELOG.md

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,3 @@
1+
## 0.0.1
2+
3+
- Initial version.

README.md

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1 @@
1+
# StackExchange Search for Alfred

analysis_options.yaml

Lines changed: 28 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,28 @@
1+
include: package:lints/recommended.yaml
2+
3+
analyzer:
4+
plugins:
5+
- dart_code_metrics
6+
7+
dart_code_metrics:
8+
metrics:
9+
cyclomatic-complexity: 20
10+
number-of-arguments: 4
11+
maximum-nesting-level: 5
12+
metrics-exclude:
13+
- test/**
14+
rules:
15+
- newline-before-return
16+
- no-boolean-literal-compare
17+
- no-empty-block
18+
- prefer-trailing-comma
19+
- prefer-conditional-expressions
20+
- no-equal-then-else
21+
anti-patterns:
22+
- long-method
23+
- long-parameter-list
24+
25+
linter:
26+
rules:
27+
avoid_print: true
28+
prefer_single_quotes: true

bin/main.dart

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,3 @@
1+
void main(List<String> arguments) async {
2+
// TODO
3+
}

pubspec.lock

Lines changed: 306 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,306 @@
1+
# Generated by pub
2+
# See https://dart.dev/tools/pub/glossary#lockfile
3+
packages:
4+
_fe_analyzer_shared:
5+
dependency: transitive
6+
description:
7+
name: _fe_analyzer_shared
8+
url: "https://pub.dartlang.org"
9+
source: hosted
10+
version: "49.0.0"
11+
alfred_workflow:
12+
dependency: "direct main"
13+
description:
14+
name: alfred_workflow
15+
url: "https://pub.dartlang.org"
16+
source: hosted
17+
version: "0.2.6"
18+
analyzer:
19+
dependency: transitive
20+
description:
21+
name: analyzer
22+
url: "https://pub.dartlang.org"
23+
source: hosted
24+
version: "5.1.0"
25+
analyzer_plugin:
26+
dependency: transitive
27+
description:
28+
name: analyzer_plugin
29+
url: "https://pub.dartlang.org"
30+
source: hosted
31+
version: "0.11.2"
32+
ansicolor:
33+
dependency: transitive
34+
description:
35+
name: ansicolor
36+
url: "https://pub.dartlang.org"
37+
source: hosted
38+
version: "2.0.1"
39+
args:
40+
dependency: "direct main"
41+
description:
42+
name: args
43+
url: "https://pub.dartlang.org"
44+
source: hosted
45+
version: "2.3.1"
46+
async:
47+
dependency: transitive
48+
description:
49+
name: async
50+
url: "https://pub.dartlang.org"
51+
source: hosted
52+
version: "2.9.0"
53+
autoequal:
54+
dependency: transitive
55+
description:
56+
name: autoequal
57+
url: "https://pub.dartlang.org"
58+
source: hosted
59+
version: "0.4.1"
60+
clock:
61+
dependency: transitive
62+
description:
63+
name: clock
64+
url: "https://pub.dartlang.org"
65+
source: hosted
66+
version: "1.1.1"
67+
collection:
68+
dependency: transitive
69+
description:
70+
name: collection
71+
url: "https://pub.dartlang.org"
72+
source: hosted
73+
version: "1.17.0"
74+
convert:
75+
dependency: transitive
76+
description:
77+
name: convert
78+
url: "https://pub.dartlang.org"
79+
source: hosted
80+
version: "3.1.1"
81+
copy_with_extension:
82+
dependency: transitive
83+
description:
84+
name: copy_with_extension
85+
url: "https://pub.dartlang.org"
86+
source: hosted
87+
version: "4.0.4"
88+
crypto:
89+
dependency: transitive
90+
description:
91+
name: crypto
92+
url: "https://pub.dartlang.org"
93+
source: hosted
94+
version: "3.0.2"
95+
csslib:
96+
dependency: transitive
97+
description:
98+
name: csslib
99+
url: "https://pub.dartlang.org"
100+
source: hosted
101+
version: "0.17.2"
102+
dart_code_metrics:
103+
dependency: "direct dev"
104+
description:
105+
name: dart_code_metrics
106+
url: "https://pub.dartlang.org"
107+
source: hosted
108+
version: "4.21.2"
109+
dart_style:
110+
dependency: transitive
111+
description:
112+
name: dart_style
113+
url: "https://pub.dartlang.org"
114+
source: hosted
115+
version: "2.2.4"
116+
equatable:
117+
dependency: transitive
118+
description:
119+
name: equatable
120+
url: "https://pub.dartlang.org"
121+
source: hosted
122+
version: "2.0.5"
123+
file:
124+
dependency: transitive
125+
description:
126+
name: file
127+
url: "https://pub.dartlang.org"
128+
source: hosted
129+
version: "6.1.4"
130+
glob:
131+
dependency: transitive
132+
description:
133+
name: glob
134+
url: "https://pub.dartlang.org"
135+
source: hosted
136+
version: "2.1.0"
137+
html:
138+
dependency: transitive
139+
description:
140+
name: html
141+
url: "https://pub.dartlang.org"
142+
source: hosted
143+
version: "0.15.1"
144+
http:
145+
dependency: transitive
146+
description:
147+
name: http
148+
url: "https://pub.dartlang.org"
149+
source: hosted
150+
version: "0.13.5"
151+
http_parser:
152+
dependency: transitive
153+
description:
154+
name: http_parser
155+
url: "https://pub.dartlang.org"
156+
source: hosted
157+
version: "4.0.2"
158+
json_annotation:
159+
dependency: transitive
160+
description:
161+
name: json_annotation
162+
url: "https://pub.dartlang.org"
163+
source: hosted
164+
version: "4.7.0"
165+
lints:
166+
dependency: "direct dev"
167+
description:
168+
name: lints
169+
url: "https://pub.dartlang.org"
170+
source: hosted
171+
version: "2.0.1"
172+
meta:
173+
dependency: transitive
174+
description:
175+
name: meta
176+
url: "https://pub.dartlang.org"
177+
source: hosted
178+
version: "1.8.0"
179+
package_config:
180+
dependency: transitive
181+
description:
182+
name: package_config
183+
url: "https://pub.dartlang.org"
184+
source: hosted
185+
version: "2.1.0"
186+
path:
187+
dependency: transitive
188+
description:
189+
name: path
190+
url: "https://pub.dartlang.org"
191+
source: hosted
192+
version: "1.8.2"
193+
petitparser:
194+
dependency: transitive
195+
description:
196+
name: petitparser
197+
url: "https://pub.dartlang.org"
198+
source: hosted
199+
version: "5.0.0"
200+
platform:
201+
dependency: transitive
202+
description:
203+
name: platform
204+
url: "https://pub.dartlang.org"
205+
source: hosted
206+
version: "3.1.0"
207+
process:
208+
dependency: transitive
209+
description:
210+
name: process
211+
url: "https://pub.dartlang.org"
212+
source: hosted
213+
version: "4.2.4"
214+
pub_semver:
215+
dependency: transitive
216+
description:
217+
name: pub_semver
218+
url: "https://pub.dartlang.org"
219+
source: hosted
220+
version: "2.1.2"
221+
pub_updater:
222+
dependency: transitive
223+
description:
224+
name: pub_updater
225+
url: "https://pub.dartlang.org"
226+
source: hosted
227+
version: "0.2.2"
228+
source_span:
229+
dependency: transitive
230+
description:
231+
name: source_span
232+
url: "https://pub.dartlang.org"
233+
source: hosted
234+
version: "1.9.1"
235+
stash:
236+
dependency: transitive
237+
description:
238+
name: stash
239+
url: "https://pub.dartlang.org"
240+
source: hosted
241+
version: "4.3.4"
242+
stash_file:
243+
dependency: transitive
244+
description:
245+
name: stash_file
246+
url: "https://pub.dartlang.org"
247+
source: hosted
248+
version: "4.3.4"
249+
stream_transform:
250+
dependency: transitive
251+
description:
252+
name: stream_transform
253+
url: "https://pub.dartlang.org"
254+
source: hosted
255+
version: "2.0.1"
256+
string_scanner:
257+
dependency: transitive
258+
description:
259+
name: string_scanner
260+
url: "https://pub.dartlang.org"
261+
source: hosted
262+
version: "1.1.1"
263+
term_glyph:
264+
dependency: transitive
265+
description:
266+
name: term_glyph
267+
url: "https://pub.dartlang.org"
268+
source: hosted
269+
version: "1.2.1"
270+
typed_data:
271+
dependency: transitive
272+
description:
273+
name: typed_data
274+
url: "https://pub.dartlang.org"
275+
source: hosted
276+
version: "1.3.1"
277+
uuid:
278+
dependency: transitive
279+
description:
280+
name: uuid
281+
url: "https://pub.dartlang.org"
282+
source: hosted
283+
version: "3.0.6"
284+
watcher:
285+
dependency: transitive
286+
description:
287+
name: watcher
288+
url: "https://pub.dartlang.org"
289+
source: hosted
290+
version: "1.0.2"
291+
xml:
292+
dependency: transitive
293+
description:
294+
name: xml
295+
url: "https://pub.dartlang.org"
296+
source: hosted
297+
version: "6.1.0"
298+
yaml:
299+
dependency: transitive
300+
description:
301+
name: yaml
302+
url: "https://pub.dartlang.org"
303+
source: hosted
304+
version: "3.1.1"
305+
sdks:
306+
dart: ">=2.18.2 <3.0.0"

pubspec.yaml

Lines changed: 18 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,18 @@
1+
name: alfred_stackexchange_workflow
2+
description: A sample command-line application.
3+
4+
# Prevent accidental publishing to pub.dev.
5+
publish_to: 'none'
6+
7+
version: 0.0.1
8+
9+
environment:
10+
sdk: '>=2.18.2 <3.0.0'
11+
12+
dependencies:
13+
args: ^2.3.1
14+
alfred_workflow: ^0.2.6
15+
16+
dev_dependencies:
17+
lints: ^2.0.1
18+
dart_code_metrics: ^4.21.2

0 commit comments

Comments
 (0)