-
Notifications
You must be signed in to change notification settings - Fork 5
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Updated dependecies Refactored and face cleaning Update JsDoc Updated tests Add interactive examples
- Loading branch information
1 parent
a0c6169
commit 97e9917
Showing
9 changed files
with
1,793 additions
and
1,010 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,28 @@ | ||
import globals from "globals"; | ||
import pluginJs from "@eslint/js"; | ||
import mochaPlugin from 'eslint-plugin-mocha'; | ||
|
||
|
||
export default [ | ||
{ | ||
languageOptions: { | ||
globals: globals.node | ||
} | ||
}, | ||
pluginJs.configs.recommended, | ||
{ | ||
rules: { | ||
// note you must disable the base rule as it can report incorrect errors | ||
"no-unused-vars": "off", | ||
"@typescript-eslint/no-unused-vars": [ | ||
"warn", // or "error" | ||
{ | ||
"argsIgnorePattern": "_", | ||
"varsIgnorePattern": "_", | ||
"caughtErrorsIgnorePattern": "_" | ||
} | ||
] | ||
} | ||
}, | ||
mochaPlugin.configs.flat.recommended | ||
]; |
Oops, something went wrong.