-
Notifications
You must be signed in to change notification settings - Fork 51
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
* feat: updating deps * chore: uodating mocha update * chore: wrong directory * chore: uodating update types * chore: updating to esm * fix: eslint command
- Loading branch information
1 parent
e461bf0
commit 0395a2e
Showing
17 changed files
with
3,029 additions
and
3,044 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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,5 +1,7 @@ | ||
module.exports = { | ||
/** @type {import("prettier").Config} */ | ||
|
||
export const config = { | ||
singleQuote: true, | ||
arrowParens: 'always', | ||
trailingComma: 'none' | ||
arrowParens: "always", | ||
trailingComma: "none", | ||
}; |
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,13 @@ | ||
import eslintConfigESLint from "eslint-config-eslint"; | ||
|
||
export default [ | ||
...eslintConfigESLint, | ||
{ | ||
ignores: ["node_modules", "coverage", "bake-scripts", "dist"], | ||
}, | ||
{ | ||
rules: { | ||
"new-cap": "off", | ||
}, | ||
}, | ||
]; |
Oops, something went wrong.