Skip to content
This repository has been archived by the owner on Feb 17, 2021. It is now read-only.

Commit

Permalink
add prettier
Browse files Browse the repository at this point in the history
  • Loading branch information
ryanatkn committed Jun 23, 2019
1 parent 3ac5ac1 commit e77b840
Show file tree
Hide file tree
Showing 5 changed files with 76 additions and 8 deletions.
13 changes: 13 additions & 0 deletions .editorconfig
Original file line number Diff line number Diff line change
@@ -0,0 +1,13 @@
root = true

[*]
end_of_line = lf
indent_style = tab
indent_size = 2
insert_final_newline = true
trim_trailing_whitespace = true
charset = utf-8

[{package.json,*.md}]
indent_style = space
indent_size = 2
4 changes: 4 additions & 0 deletions .gitignore
Original file line number Diff line number Diff line change
@@ -0,0 +1,4 @@
.DS_Store
node_modules
npm-debug.log
yarn-error.log
16 changes: 8 additions & 8 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -50,7 +50,7 @@ Maybe they should because bloat?
### preprocessors

- [`@kaisermann/svelte-preprocess`](https://github.com/kaisermann/svelte-preprocess) -
A Svelte preprocessor with baked in support for common used preprocessors
A Svelte preprocessor with baked in support for common used preprocessors
- [`@pngwn/MDsveX`](https://github.com/pngwn/MDsveX) -
A markdown preprocessor for Svelte.
- [`@pyoner/svelte-typescript`](https://github.com/pyoner/svelte-typescript) -
Expand All @@ -63,7 +63,7 @@ Maybe they should because bloat?
- [`@UnwrittenFun/svelte-vscode`](https://github.com/UnwrittenFun/svelte-vscode) -
Svelte language support for VS Code
- [`@UnwrittenFun/prettier-plugin-svelte`](https://github.com/UnwrittenFun/prettier-plugin-svelte) -
Format your svelte components using prettier.
Format your svelte components using prettier.
- [`@UnwrittenFun/svelte-language-server`](https://github.com/UnwrittenFun/svelte-language-server) -
A WIP language server for Svelte

Expand All @@ -77,17 +77,17 @@ Maybe they should because bloat?
- [`@sveltejs/template`](https://github.com/sveltejs/template) -
Template for building basic applications with Svelte with rollup
- [`@sveltejs/template-webpack`](https://github.com/sveltejs/template-webpack) -
Template for building basic Svelte applications with webpack
Template for building basic Svelte applications with webpack
- [`@sveltejs/component-template`](https://github.com/sveltejs/component-template) -
A base for building shareable Svelte components
- [`@sveltejs/template-custom-element`](https://github.com/sveltejs/template-custom-element) -
Template for building basic applications with Svelte and custom elements
- [`@sveltejs/sapper-template`](https://github.com/sveltejs/sapper-template) -
Starter template for Sapper apps
- [`@pyoner/svelte-typescript`](https://github.com/pyoner/svelte-typescript) -
Typescript monorepo for Svelte v3 (preprocess, template, types)
Typescript monorepo for Svelte v3 (preprocess, template, types)
- [`@Axelen123/svelte-ts-template`](https://github.com/Axelen123/svelte-ts-template) -
Typescript template for Svelte v3
Typescript template for Svelte v3
- [`@Shyam-Chen/Svelte-Play`](https://github.com/Shyam-Chen/Svelte-Play) -
A boilerplate for Svelte, Material, Babel, and PostCSS. Webpack
- [`@Holben888/svelte-starter-template`](https://github.com/Holben888/svelte-starter-template) -
Expand All @@ -102,7 +102,7 @@ Maybe they should because bloat?
A template for building Electron apps with Svelte
**VERSION 2** <sub>(but included here anyway)</sub>
- [`@Blade67/Sveltron`](https://github.com/Blade67/Sveltron) -
Electron Svelte boilerplate
Electron Svelte boilerplate
- [`@chuanqisun/svelte-electron-template`](https://github.com/chuanqisun/svelte-electron-template) -
The bare minimum boilerplate to use svelte in electron

Expand Down Expand Up @@ -166,7 +166,7 @@ Maybe they should because bloat?
## experiments

- [`@sveltejs/gl`](https://github.com/sveltejs/gl) -
A (very experimental) project to bring WebGL to Svelte
A (very experimental) project to bring WebGL to Svelte

## other lists

Expand All @@ -177,4 +177,4 @@ Maybe they should because bloat?
- [`@mindrones/svelte-sapper-community`](https://github.com/mindrones/svelte-sapper-community) -
Svelte/Sapper community map

# :sunflower:
# :sunflower:
14 changes: 14 additions & 0 deletions package-lock.json

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

37 changes: 37 additions & 0 deletions package.json
Original file line number Diff line number Diff line change
@@ -0,0 +1,37 @@
{
"name": "bloated-svelte",
"version": "1.0.0",
"description": "Svelte links in a bloated list",
"main": "README.md",
"repository": {
"type": "git",
"url": "git+https://github.com/ryanatkn/bloated-svelte.git"
},
"keywords": [
"svelte",
"sveltejs"
],
"author": "https://github.com/ryanatkn/bloated-svelte/graphs/contributors",
"license": "CC0-1.0",
"bugs": {
"url": "https://github.com/ryanatkn/bloated-svelte/issues"
},
"homepage": "https://github.com/ryanatkn/bloated-svelte#readme",
"prettier": {
"useTabs": true,
"singleQuote": true,
"trailingComma": "all",
"bracketSpacing": false,
"overrides": [
{
"files": "*.{json,md}",
"options": {
"useTabs": false
}
}
]
},
"devDependencies": {
"prettier": "^1.18.2"
}
}

0 comments on commit e77b840

Please sign in to comment.