-
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 Add interactive examples Updated tests
- Loading branch information
1 parent
24e9519
commit 7154db3
Showing
9 changed files
with
1,793 additions
and
812 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.