-
Notifications
You must be signed in to change notification settings - Fork 3
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
feat: add watch mode and skip option
- Loading branch information
1 parent
0e7c6cc
commit 8d9f776
Showing
14 changed files
with
3,029 additions
and
189 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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,7 +1,9 @@ | ||
src/** | ||
node_modules/** | ||
src/**/* | ||
node_modules/**/* | ||
pnpm-lock.yaml | ||
renovate.json | ||
.gitignore | ||
.github/**/* | ||
.prettierrc | ||
.prettierrc | ||
test/**/* | ||
dist/test/**/* |
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,16 @@ | ||
import globals from "globals"; | ||
import pluginJs from "@eslint/js"; | ||
import tseslint from "typescript-eslint"; | ||
import pluginPromise from "eslint-plugin-promise"; | ||
import nodePlugin from "eslint-plugin-node"; | ||
import eslintPluginUnicorn from "eslint-plugin-unicorn"; | ||
|
||
export default [ | ||
{ files: ["**/*.{js,mjs,cjs,ts}"] }, | ||
{ languageOptions: { globals: globals.browser } }, | ||
pluginJs.configs.recommended, | ||
nodePlugin.configs["flat/recommended-script"], | ||
pluginPromise.configs["flat/recommended"], | ||
eslintPluginUnicorn.configs.recommended, | ||
...tseslint.configs.recommended, | ||
]; |
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
Oops, something went wrong.