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 daefa46 commit 8bec469Copy full SHA for 8bec469
src/jobs/lint.yml
@@ -14,6 +14,10 @@ parameters:
14
default: .
15
description: Path to the directory containing your pubspec.yaml file. Not needed if pubspec.yaml lives in the root.
16
type: string
17
+ analyze-dir:
18
+ default: lib
19
+ description: Path to the directory containing your Dart source code to analyze.
20
+ type: string
21
cache-version:
22
default: v1
23
description: Change the default cache version if you need to clear the cache for any reason.
@@ -27,5 +31,5 @@ steps:
27
31
cache-version: <<parameters.cache-version>>
28
32
- run:
29
33
name: Run static analysis
30
- command: flutter analyze lib
34
+ command: flutter analyze <<parameters.analyze-dir>>
35
working_directory: <<parameters.app-dir>>
0 commit comments