Skip to content

Commit fbe8b67

Browse files
committed
refactor: re-architect lemmy client api
1 parent f352a17 commit fbe8b67

File tree

1,470 files changed

+91534
-81100
lines changed

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

1,470 files changed

+91534
-81100
lines changed

.github/workflows/cd.yml

Lines changed: 0 additions & 27 deletions
This file was deleted.

.github/workflows/ci.yml

Lines changed: 1 addition & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -12,16 +12,14 @@ jobs:
1212
runs-on: ubuntu-latest
1313
steps:
1414
- uses: dart-lang/setup-dart@v1
15-
with:
16-
sdk: 2.17.0
1715

1816
- uses: actions/checkout@v2
1917

2018
- name: Get dependencies
2119
run: dart pub get
2220

2321
- name: Check formatting
24-
run: dart format --set-exit-if-changed --output none .
22+
run: dart format -l 200 --set-exit-if-changed --output none .
2523

2624
- name: Run lints
2725
run: dart analyze --fatal-warnings --fatal-infos

.gitignore

Lines changed: 7 additions & 9 deletions
Original file line numberDiff line numberDiff line change
@@ -1,12 +1,10 @@
1-
# Flutter/Dart/Pub related
2-
**/doc/api/
1+
# https://dart.dev/guides/libraries/private-files
2+
# Created by `dart pub`
33
.dart_tool/
4-
.packages
5-
.pub-cache/
6-
.pub/
7-
/build/
4+
5+
# Avoid committing pubspec.lock for library packages; see
6+
# https://dart.dev/guides/libraries/private-files#pubspeclock.
87
pubspec.lock
98

10-
# dev
11-
Taskfile.yml
12-
.idea
9+
# Contains credentials for tests
10+
test/config.dart

.vscode/settings.json

Lines changed: 16 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,16 @@
1+
{
2+
"dart.lineLength": 200,
3+
"[dart]": {
4+
"editor.formatOnSave": true,
5+
"editor.formatOnType": true,
6+
"editor.rulers": [
7+
200
8+
],
9+
"editor.codeActionsOnSave": {
10+
"source.fixAll": "always",
11+
}
12+
},
13+
"files.exclude": {
14+
"**/.git": false,
15+
}
16+
}

0 commit comments

Comments
 (0)