Skip to content

Commit

Permalink
refactor: initial work on new experimental v4 api
Browse files Browse the repository at this point in the history
  • Loading branch information
hjiangsu committed Dec 23, 2024
1 parent f352a17 commit 4f92895
Show file tree
Hide file tree
Showing 1,470 changed files with 91,390 additions and 81,101 deletions.
27 changes: 0 additions & 27 deletions .github/workflows/cd.yml

This file was deleted.

4 changes: 1 addition & 3 deletions .github/workflows/ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -12,16 +12,14 @@ jobs:
runs-on: ubuntu-latest
steps:
- uses: dart-lang/setup-dart@v1
with:
sdk: 2.17.0

- uses: actions/checkout@v2

- name: Get dependencies
run: dart pub get

- name: Check formatting
run: dart format --set-exit-if-changed --output none .
run: dart format -l 200 --set-exit-if-changed --output none .

- name: Run lints
run: dart analyze --fatal-warnings --fatal-infos
Expand Down
15 changes: 5 additions & 10 deletions .gitignore
Original file line number Diff line number Diff line change
@@ -1,12 +1,7 @@
# Flutter/Dart/Pub related
**/doc/api/
# https://dart.dev/guides/libraries/private-files
# Created by `dart pub`
.dart_tool/
.packages
.pub-cache/
.pub/
/build/
pubspec.lock

# dev
Taskfile.yml
.idea
# Avoid committing pubspec.lock for library packages; see
# https://dart.dev/guides/libraries/private-files#pubspeclock.
pubspec.lock
16 changes: 16 additions & 0 deletions .vscode/settings.json
Original file line number Diff line number Diff line change
@@ -0,0 +1,16 @@
{
"dart.lineLength": 200,
"[dart]": {
"editor.formatOnSave": true,
"editor.formatOnType": true,
"editor.rulers": [
200
],
"editor.codeActionsOnSave": {
"source.fixAll": "always",
}
},
"files.exclude": {
"**/.git": false,
}
}
Loading

0 comments on commit 4f92895

Please sign in to comment.