chore: add registry install flow
This commit is contained in:
+29
-1
@@ -7,14 +7,42 @@ import tseslint from "typescript-eslint";
|
||||
export default tseslint.config(
|
||||
{
|
||||
ignores: [
|
||||
"**/.artifacts/**",
|
||||
"**/.tmp-home/**",
|
||||
"**/dist/**",
|
||||
"**/node_modules/**",
|
||||
"**/output/**",
|
||||
"**/playwright-report/**",
|
||||
"**/storybook-static/**",
|
||||
"**/coverage/**"
|
||||
"**/coverage/**",
|
||||
"**/test-results/**"
|
||||
]
|
||||
},
|
||||
js.configs.recommended,
|
||||
...tseslint.configs.recommended,
|
||||
{
|
||||
files: ["**/*.{js,mjs}"],
|
||||
languageOptions: {
|
||||
ecmaVersion: "latest",
|
||||
sourceType: "module",
|
||||
globals: {
|
||||
...globals.node
|
||||
}
|
||||
}
|
||||
},
|
||||
{
|
||||
files: ["**/*.cjs"],
|
||||
languageOptions: {
|
||||
ecmaVersion: "latest",
|
||||
sourceType: "commonjs",
|
||||
globals: {
|
||||
...globals.node
|
||||
}
|
||||
},
|
||||
rules: {
|
||||
"@typescript-eslint/no-require-imports": "off"
|
||||
}
|
||||
},
|
||||
{
|
||||
files: ["**/*.{ts,tsx,mts,cts}"],
|
||||
languageOptions: {
|
||||
|
||||
Reference in New Issue
Block a user