Skip to content

Commit

Permalink
Initial release
Browse files Browse the repository at this point in the history
Signed-off-by: Eric Searcy <eric@linuxfoundation.org>
  • Loading branch information
emsearcy committed Oct 6, 2023
0 parents commit 407faf7
Show file tree
Hide file tree
Showing 13 changed files with 835 additions and 0 deletions.
16 changes: 16 additions & 0 deletions .eslintrc.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,16 @@
# Copyright The Linux Foundation and each contributor.
# SPDX-License-Identifier: MIT
---
env:
es2021: true
node: true
extends:
- airbnb-base
rules:
# Camelcase and dangling _ are useful to name functions to match their
# Lowdefy names.
camelcase: 0
no-underscore-dangle: 0
# Per Lowdefy docs, exported names must match function names referenced in
# types.js.
import/prefer-default-export: 0
25 changes: 25 additions & 0 deletions .github/workflows/license-header-check.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,25 @@
# Copyright The Linux Foundation and each contributor.
# SPDX-License-Identifier: MIT
---
name: License Header Check

'on':
push:
branches:
- main
pull_request:
branches:
- main

jobs:
license-header-check:
name: License Header Check
runs-on: ubuntu-latest
environment: dev

steps:
- name: Checkout
uses: actions/checkout@v3
- name: Check License Headers
run: |
./check-headers.sh
12 changes: 12 additions & 0 deletions .gitignore
Original file line number Diff line number Diff line change
@@ -0,0 +1,12 @@
# Copyright The Linux Foundation and each contributor.
# SPDX-License-Identifier: MIT

node_modules/
# Normally, committing the package lockfile is a best practice; however, the
# expected deployment of this repo is as a subfolder of a pnpm monorepo.
# Therefore, no lockfiles should be present, with the exception of installing
# dependencies to run lint/tests, and these are not going to be committed to
# version control.
package-lock.json
yarn.lock
pnpm-lock.yaml
18 changes: 18 additions & 0 deletions LICENSE
Original file line number Diff line number Diff line change
@@ -0,0 +1,18 @@
Copyright The Linux Foundation and each contributor.

Permission is hereby granted, free of charge, to any person obtaining a copy of
this software and associated documentation files (the "Software"), to deal in
the Software without restriction, including without limitation the rights to
use, copy, modify, merge, publish, distribute, sublicense, and/or sell copies of
the Software, and to permit persons to whom the Software is furnished to do so,
subject to the following conditions:

The above copyright notice and this permission notice shall be included in all
copies or substantial portions of the Software.

THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, FITNESS
FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR
COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER
IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN
CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.
Loading

0 comments on commit 407faf7

Please sign in to comment.