Skip to content
This repository has been archived by the owner on Jan 19, 2022. It is now read-only.

Updating tutorial samples to Dart v2 #49

Merged
merged 26 commits into from
Jul 2, 2019
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
9 changes: 9 additions & 0 deletions anagram/.gitignore
Original file line number Diff line number Diff line change
@@ -0,0 +1,9 @@
# Files and directories created by pub
.dart_tool/
.packages

# Conventional directory for build outputs
build/

# Directory created by dartdoc
doc/api/
8 changes: 8 additions & 0 deletions anagram/analysis_options.yaml
Original file line number Diff line number Diff line change
@@ -0,0 +1,8 @@
# Defines a default set of lint rules enforced for
# projects at Google. For details and rationale,
# see https://github.com/dart-lang/pedantic#enabled-lints.
include: package:pedantic/analysis_options.yaml

linter:
rules:
- omit_local_variable_types
Loading