-
Notifications
You must be signed in to change notification settings - Fork 28
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
1 parent
8c40705
commit bf0e8f9
Showing
91 changed files
with
2,288 additions
and
695 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 |
---|---|---|
|
@@ -16,6 +16,8 @@ jobs: | |
|
||
- run: npm ci | ||
|
||
- run: npm run lint | ||
|
||
- run: npm run prettier:check | ||
|
||
- run: npm run 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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,30 @@ | ||
import pluginJs from "@eslint/js"; | ||
import solid from "eslint-plugin-solid"; | ||
import globals from "globals"; | ||
import tseslint from "typescript-eslint"; | ||
|
||
/** @type {import('eslint').Linter.Config[]} */ | ||
export default [ | ||
{ files: ["**/*.{js,mjs,cjs,ts,tsx}"] }, | ||
{ languageOptions: { globals: globals.browser } }, | ||
{ | ||
ignores: [ | ||
"dist", | ||
"coverage", | ||
"node_modules", | ||
"dnssec-prover", | ||
"jest.config.js", | ||
"babel.config.js", | ||
"vite.config.mjs", | ||
"src/utils/dnssec/dnssec_prover*", | ||
], | ||
}, | ||
pluginJs.configs.recommended, | ||
...tseslint.configs.recommended, | ||
solid.configs["flat/typescript"], | ||
{ | ||
rules: { | ||
"no-async-promise-executor": "off", | ||
}, | ||
}, | ||
]; |
Oops, something went wrong.