Skip to content

Commit

Permalink
build(design-system): autorise les export default dans les dossiers d…
Browse files Browse the repository at this point in the history
…e config storybook
  • Loading branch information
JLou committed Feb 19, 2025
1 parent ea94ee4 commit 11af255
Show file tree
Hide file tree
Showing 3 changed files with 21 additions and 19 deletions.
6 changes: 5 additions & 1 deletion config/eslint.config.js
Original file line number Diff line number Diff line change
Expand Up @@ -113,7 +113,11 @@ module.exports = {
},
overrides: [
{
files: ["**/*.stories.ts?(x)", "**/vitest.config.ts"],
files: [
"**/*.stories.ts?(x)",
"**/vitest.config.ts",
"**/.storybook/*.ts",
],
rules: {
"import/no-default-export": "off",
},
Expand Down
32 changes: 16 additions & 16 deletions package-lock.json

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

2 changes: 0 additions & 2 deletions slash/css/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -11,8 +11,6 @@
"predev": "rimraf dist",
"dev": "postcss \"src/**/*.scss\" --base src --dir dist --ext css --verbose --watch --env development_agent --config ../../config/postcss.config.js",
"build": "postcss \"src/**/*.scss\" --base src --dir dist --ext css --verbose --env production_agent --config ../../config/postcss.config.js",
"eslint": "eslint src --ext js,jsx,ts,tsx",
"eslint:fix": "eslint src --ext js,jsx,ts,tsx --fix",
"stylelint": "stylelint \"src/**/*.{scss,css}\"",
"stylelint:fix": "stylelint \"src/**/*.{scss,css}\" --fix",
"prettier": "prettier \"src/**/*\" --check",
Expand Down

0 comments on commit 11af255

Please sign in to comment.