Skip to content

Commit

Permalink
import the project with the meson problem
Browse files Browse the repository at this point in the history
  • Loading branch information
mmomtchev committed Mar 13, 2024
0 parents commit e2bb806
Show file tree
Hide file tree
Showing 63 changed files with 13,422 additions and 0 deletions.
5 changes: 5 additions & 0 deletions .clang-format
Original file line number Diff line number Diff line change
@@ -0,0 +1,5 @@
BasedOnStyle: LLVM
IndentWidth: 2
ColumnLimit: 120
AllowShortFunctionsOnASingleLine: Inline
AllowShortIfStatementsOnASingleLine: WithoutElse
1 change: 1 addition & 0 deletions .eslintignore
Original file line number Diff line number Diff line change
@@ -0,0 +1 @@
test/browser/build/*
67 changes: 67 additions & 0 deletions .eslintrc.json
Original file line number Diff line number Diff line change
@@ -0,0 +1,67 @@
{
"env": {
"mocha": true,
"shared-node-browser": true,
"es2020": true
},
"extends": [
"eslint:recommended"
],
"rules": {
"semi": [
2,
"always"
],
"quotes": [
"error",
"single"
]
},
"plugins": [
"mocha"
],
"globals": {
"__karma__": true,
"process": true
},
"parserOptions": {
"ecmaVersion": 2020,
"sourceType": "module"
},
"overrides": [
{
"files": [
"test/*.ts"
],
"parser": "@typescript-eslint/parser",
"plugins": [
"@typescript-eslint"
],
"rules": {
"@typescript-eslint/ban-ts-comment": "off"
},
"extends": [
"eslint:recommended",
"plugin:@typescript-eslint/eslint-recommended",
"plugin:@typescript-eslint/recommended"
]
},
{
"files": [
"*.cjs"
],
"parserOptions": {
"ecmaVersion": 2015,
"sourceType": "commonjs"
}
},
{
"files": [
"test/browser/*.js"
],
"env": {
"browser": true
}
}
]
}
14 changes: 14 additions & 0 deletions .github/dependabot.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,14 @@
version: 2
updates:
- package-ecosystem: "npm"
directory: "/"
schedule:
interval: "daily"
open-pull-requests-limit: 1
groups:
eslint:
patterns:
- "*eslint*"
emnapi:
patterns:
- "*emnapi*"
Loading

0 comments on commit e2bb806

Please sign in to comment.