chore(release): prepare v0.1.0 release for main #16
+30
-4
@@ -1,8 +1,34 @@
|
||||
// For more info, see https://github.com/storybookjs/eslint-plugin-storybook#configuration-flat-config-format
|
||||
import storybook from "eslint-plugin-storybook";
|
||||
import js from "@eslint/js";
|
||||
import tseslint from "typescript-eslint";
|
||||
|
||||
import js from '@eslint/js';
|
||||
export default [
|
||||
{
|
||||
ignores: [
|
||||
"**/dist/**",
|
||||
"**/www/**",
|
||||
"**/node_modules/**",
|
||||
"**/.stencil/**",
|
||||
"**/loader/**",
|
||||
],
|
||||
},
|
||||
|
||||
export default [js.configs.recommended, {
|
||||
ignores: ['**/dist/**', '**/www/**', '**/node_modules/**', '**/.stencil/**'],
|
||||
}, ...storybook.configs["flat/recommended"]];
|
||||
js.configs.recommended,
|
||||
|
||||
...tseslint.configs.recommended,
|
||||
|
||||
...storybook.configs["flat/recommended"],
|
||||
|
||||
{
|
||||
files: ["**/*.tsx"],
|
||||
rules: {
|
||||
"@typescript-eslint/no-unused-vars": [
|
||||
"error",
|
||||
{
|
||||
varsIgnorePattern: "^h$",
|
||||
},
|
||||
],
|
||||
},
|
||||
},
|
||||
];
|
||||
Reference in New Issue
Block a user