fix: Removed unrequired component and added prettier config
Some checks failed
Publish Svelte Tailwind Library / build-and-publish (push) Failing after 22s
Some checks failed
Publish Svelte Tailwind Library / build-and-publish (push) Failing after 22s
This commit is contained in:
13
.prettierignore
Normal file
13
.prettierignore
Normal file
@@ -0,0 +1,13 @@
|
||||
.DS_Store
|
||||
node_modules
|
||||
/build
|
||||
/.svelte-kit
|
||||
/package
|
||||
.env
|
||||
.env.*
|
||||
!.env.example
|
||||
|
||||
# Ignore files for PNPM, NPM and YARN
|
||||
pnpm-lock.yaml
|
||||
package-lock.json
|
||||
yarn.lock
|
10
.prettierrc
Normal file
10
.prettierrc
Normal file
@@ -0,0 +1,10 @@
|
||||
{
|
||||
"useTabs": false,
|
||||
"tabWidth": 4,
|
||||
"singleQuote": true,
|
||||
"trailingComma": "none",
|
||||
"printWidth": 100,
|
||||
"plugins": ["prettier-plugin-svelte"],
|
||||
"pluginSearchDirs": ["."],
|
||||
"overrides": [{ "files": "*.svelte", "options": { "parser": "svelte" } }]
|
||||
}
|
@@ -6,6 +6,5 @@ export { default as Section } from './components/Section.svelte';
|
||||
export { default as PageIcon } from './components/PageIcon.svelte';
|
||||
export { default as Loading } from './components/Loading.svelte';
|
||||
export { default as GridGallery } from './components/GridGallery.svelte';
|
||||
export { default as Gallery } from './components/Gallery.svelte';
|
||||
export { default as Collapsible } from './components/Collapsible.svelte';
|
||||
export { default as Card } from './components/Cards/Card.svelte';
|
Reference in New Issue
Block a user