[READ-ONLY] Mirror of https://github.com/probablykasper/capacitor-svelte-snowpack-template.
capacitor svelte template
0

Configure Feed

Select the types of activity you want to include in your feed.

Move prettier config to package.json

Kasper (Mar 10, 2021, 11:46 PM +0100) 35510cbd 24c71174

+11 -18
-18
.prettierrc.json
··· 1 - { 2 - "printWidth": 100, 3 - "tabWidth": 2, 4 - "useTabs": false, 5 - "semi": false, 6 - "singleQuote": true, 7 - "trailingComma": "es5", 8 - "arrowParens": "always", 9 - "bracketSpacing": true, 10 - "htmlWhitespaceSensitivity": "strict", 11 - "endOfLine": "lf", 12 - "embeddedLanguageFormatting": "auto", 13 - "svelteSortOrder": "options-scripts-styles-markup", 14 - "svelteStrictMode": false, 15 - "svelteAllowShorthand": true, 16 - "svelteBracketNewLine": false, 17 - "svelteIndentScriptAndStyle": true 18 - }
+11
package.json
··· 19 19 "svelte-check": "^1.2.4", 20 20 "svelte-preprocess": "^4.6.9", 21 21 "typescript": "^4.2.3" 22 + }, 23 + "prettier": { 24 + "printWidth": 100, 25 + "semi": false, 26 + "singleQuote": true, 27 + "htmlWhitespaceSensitivity": "strict", 28 + "svelteSortOrder": "options-scripts-styles-markup", 29 + "svelteStrictMode": false, 30 + "svelteAllowShorthand": true, 31 + "svelteBracketNewLine": false, 32 + "svelteIndentScriptAndStyle": true 22 33 } 23 34 }