Skip to content

Commit

Permalink
Merge pull request #29 from kjerandp/v3.0.0
Browse files Browse the repository at this point in the history
V3.0.0
  • Loading branch information
kjerandp authored Jan 6, 2023
2 parents 4808481 + 456f2a2 commit 69e7a9d
Show file tree
Hide file tree
Showing 85 changed files with 13,223 additions and 13,872 deletions.
1 change: 1 addition & 0 deletions .eslintignore
Original file line number Diff line number Diff line change
@@ -1,3 +1,4 @@
node_modules
test
testfiles
dist
36 changes: 23 additions & 13 deletions .eslintrc
Original file line number Diff line number Diff line change
@@ -1,19 +1,19 @@
{
"env": {
"es6": true,
"node": true
"root": true,
"parser": "@typescript-eslint/parser",
"settings": {
"import/resolver": {
"typescript": {} // this loads <rootdir>/tsconfig.json to eslint
}
},
"plugins": [
"@typescript-eslint",
"import"
],
"extends": [
"airbnb-base"
"eslint:recommended",
"plugin:@typescript-eslint/recommended"
],
"globals": {
"Atomics": "readonly",
"SharedArrayBuffer": "readonly"
},
"parserOptions": {
"ecmaVersion": 2018,
"sourceType": "module"
},
"rules": {
"one-var": "off",
"no-mixed-operators": "off",
Expand All @@ -22,6 +22,16 @@
"no-plusplus": "off",
"no-underscore-dangle": "off",
"one-var-declaration-per-line": "off",
"import/prefer-default-export": "off"
"import/prefer-default-export": "off",
"import/extensions": [
"error",
"ignorePackages",
{
"js": "never",
"jsx": "never",
"ts": "never",
"tsx": "never"
}
]
}
}
2 changes: 1 addition & 1 deletion .github/workflows/nodejs.yml
Original file line number Diff line number Diff line change
Expand Up @@ -9,7 +9,7 @@ jobs:

strategy:
matrix:
node-version: [12.x]
node-version: [16.x]

steps:
- uses: actions/checkout@v1
Expand Down
5 changes: 5 additions & 0 deletions .mocharc.json
Original file line number Diff line number Diff line change
@@ -0,0 +1,5 @@
{
"extension": ["ts"],
"spec": "test/**/*.spec.ts",
"require": "ts-node/register"
}
1 change: 1 addition & 0 deletions docs/.nojekyll
Original file line number Diff line number Diff line change
@@ -0,0 +1 @@
TypeDoc added this file to prevent GitHub Pages from using Jekyll. You can turn off this behavior by setting the `githubPages` option to false.
Loading

0 comments on commit 69e7a9d

Please sign in to comment.