Skip to content

Commit

Permalink
Clean up & migrate to zimmerframe for walking ast syntax
Browse files Browse the repository at this point in the history
  • Loading branch information
xeho91 committed May 15, 2024
1 parent 86d85b4 commit 4322fcf
Show file tree
Hide file tree
Showing 27 changed files with 8,445 additions and 4,229 deletions.
14 changes: 7 additions & 7 deletions .prettierrc
Original file line number Diff line number Diff line change
@@ -1,8 +1,8 @@
{
"printWidth": 100,
"tabWidth": 2,
"bracketSpacing": true,
"trailingComma": "es5",
"singleQuote": true,
"arrowParens": "always"
}
"printWidth": 100,
"tabWidth": 2,
"bracketSpacing": true,
"trailingComma": "es5",
"singleQuote": true,
"arrowParens": "always"
}
18 changes: 10 additions & 8 deletions .storybook/main.ts
Original file line number Diff line number Diff line change
Expand Up @@ -2,18 +2,20 @@ import type { StorybookConfig } from '@storybook/svelte-vite';

const config: StorybookConfig = {
framework: '@storybook/svelte-vite',
stories: [{
directory: '../stories',
files:'**/*.stories.svelte',
titlePrefix:'Demo'
}],
addons: [
'../dist/preset/index.js',
'../dist/preset.js',
'@storybook/addon-essentials',
'@storybook/addon-interactions',
],
stories: [
{
directory: '../stories',
files: '**/*.stories.svelte',
titlePrefix: 'Demo',
},
],
docs: {
autodocs: 'tag'
}
autodocs: 'tag',
},
};
export default config;
123 changes: 0 additions & 123 deletions context.ts

This file was deleted.

Loading

0 comments on commit 4322fcf

Please sign in to comment.