We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 0604963 commit 3ba8457Copy full SHA for 3ba8457
.github/workflows/lint.yml
@@ -3,7 +3,18 @@ name: Code analysis
3
on: [push, pull_request]
4
5
jobs:
6
- lint:
+ analyze:
7
+ runs-on: ubuntu-20.04
8
+ container:
9
+ image: google/dart:latest
10
+ steps:
11
+ - uses: actions/checkout@v1
12
+ - run: dart run build_runner build
13
+ working-directory: objectbox
14
+ - run: dart analyze
15
16
+
17
+ pana:
18
runs-on: ubuntu-latest
19
steps:
20
- uses: actions/checkout@v2
objectbox/analysis_options.yaml
@@ -25,6 +25,9 @@ linter:
25
26
# exclude standalone packages:
27
analyzer:
28
+ errors:
29
+ public_member_api_docs: error
30
+ type_annotate_public_apis: error
31
exclude:
32
- example/**
33
- generator/**
0 commit comments