Skip to content

Commit 83e4e4d

Browse files
committed
first commit
0 parents  commit 83e4e4d

File tree

5 files changed

+104
-0
lines changed

5 files changed

+104
-0
lines changed

.github/dependabot.yaml

+8
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,8 @@
1+
# Dependabot configuration file.
2+
version: 2
3+
4+
updates:
5+
- package-ecosystem: "github-actions"
6+
directory: "/"
7+
schedule:
8+
interval: "monthly"

CONTRIBUTING.md

+51
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,51 @@
1+
# How to Contribute
2+
3+
We'd love to accept your patches and contributions to this project. There are
4+
just a few small guidelines you need to follow.
5+
6+
## Contributor License Agreement
7+
8+
Contributions to this project must be accompanied by a Contributor License
9+
Agreement (CLA). You (or your employer) retain the copyright to your
10+
contribution; this simply gives us permission to use and redistribute your
11+
contributions as part of the project. Head over to
12+
<https://cla.developers.google.com/> to see your current agreements on file or
13+
to sign a new one.
14+
15+
You generally only need to submit a CLA once, so if you've already submitted one
16+
(even if it was for a different project), you probably don't need to do it
17+
again.
18+
19+
## Code Reviews
20+
21+
All submissions, including submissions by project members, require review. We
22+
use GitHub pull requests for this purpose. Consult
23+
[GitHub Help](https://help.github.com/articles/about-pull-requests/) for more
24+
information on using pull requests.
25+
26+
## Coding style
27+
28+
The Dart source code in this repo follows the:
29+
30+
* [Dart style guide](https://dart.dev/guides/language/effective-dart/style)
31+
32+
You should familiarize yourself with those guidelines.
33+
34+
## File headers
35+
36+
All files in the Dart project must start with the following header; if you add a
37+
new file please also add this. The year should be a single number stating the
38+
year the file was created (don't use a range like "2011-2012"). Additionally, if
39+
you edit an existing file, you shouldn't update the year.
40+
41+
// Copyright (c) 2023, the Dart project authors. Please see the AUTHORS file
42+
// for details. All rights reserved. Use of this source code is governed by a
43+
// BSD-style license that can be found in the LICENSE file.
44+
45+
## Community Guidelines
46+
47+
This project follows
48+
[Google's Open Source Community Guidelines](https://opensource.google/conduct/).
49+
50+
We pledge to maintain an open and welcoming environment. For details, see our
51+
[code of conduct](https://dart.dev/code-of-conduct).

LICENSE

+27
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,27 @@
1+
Copyright 2023, the Dart project authors.
2+
3+
Redistribution and use in source and binary forms, with or without
4+
modification, are permitted provided that the following conditions are
5+
met:
6+
7+
* Redistributions of source code must retain the above copyright
8+
notice, this list of conditions and the following disclaimer.
9+
* Redistributions in binary form must reproduce the above
10+
copyright notice, this list of conditions and the following
11+
disclaimer in the documentation and/or other materials provided
12+
with the distribution.
13+
* Neither the name of Google LLC nor the names of its
14+
contributors may be used to endorse or promote products derived
15+
from this software without specific prior written permission.
16+
17+
THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS
18+
"AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT
19+
LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR
20+
A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT
21+
OWNER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL,
22+
SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT
23+
LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE,
24+
DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY
25+
THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT
26+
(INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE
27+
OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.

README.md

+17
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,17 @@
1+
## Overview
2+
3+
This repository is home to Dart packages related to FFI and native assets
4+
bundling.
5+
6+
## Packages
7+
8+
| Package | Description | Version |
9+
| --- | --- | --- |
10+
11+
<! -- ## Publishing automation
12+
13+
For information about our publishing automation and release process, see
14+
https://github.com/dart-lang/ecosystem/wiki/Publishing-automation.
15+
16+
For additional information about contributing, see our
17+
[contributing](CONTRIBUTING.md) page. -->

pkgs/placeholder.txt

+1
Original file line numberDiff line numberDiff line change
@@ -0,0 +1 @@
1+
remove once we have one package here

0 commit comments

Comments
 (0)