Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Add example project #42

Merged
merged 2 commits into from
Nov 1, 2023
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
5 changes: 5 additions & 0 deletions example/.gitignore
Original file line number Diff line number Diff line change
@@ -0,0 +1,5 @@
# Files and directories created by pub.
/.dart_tool/
/.packages

/.idea/
2 changes: 2 additions & 0 deletions example/analysis_options.yaml
Original file line number Diff line number Diff line change
@@ -0,0 +1,2 @@
# https://pub.dev/packages/yumemi_lints
include: package:yumemi_lints/dart/2.17.0/recommended.yaml
1 change: 1 addition & 0 deletions example/main.dart
Original file line number Diff line number Diff line change
@@ -0,0 +1 @@
void main() {}
12 changes: 12 additions & 0 deletions example/pubspec.lock
Original file line number Diff line number Diff line change
@@ -0,0 +1,12 @@
# Generated by pub
# See https://dart.dev/tools/pub/glossary#lockfile
packages:
yumemi_lints:
dependency: "direct dev"
description:
path: ".."
relative: true
source: path
version: "1.0.0"
sdks:
dart: ">=2.17.0 <3.0.0"
11 changes: 11 additions & 0 deletions example/pubspec.yaml
Original file line number Diff line number Diff line change
@@ -0,0 +1,11 @@
name: example
description: An example of yumemi_lints.
version: 1.0.0
publish_to: none

environment:
sdk: '>=2.17.0 <3.0.0'

dev_dependencies:
yumemi_lints:
path: ..
Yamasaki-pan961 marked this conversation as resolved.
Show resolved Hide resolved