-
Notifications
You must be signed in to change notification settings - Fork 214
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge pull request #670 from quoid/appstore/v4.5.0
build: v4.5.0, v1.5.0
- Loading branch information
Showing
264 changed files
with
17,370 additions
and
13,445 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,10 +1,11 @@ | ||
# https://editorconfig.org/ | ||
# https://prettier.io/docs/en/configuration#editorconfig | ||
|
||
root = true | ||
|
||
[*] | ||
charset = utf-8 | ||
end_of_line = lf | ||
indent_size = 4 | ||
indent_style = space | ||
indent_style = tab | ||
insert_final_newline = true | ||
max_line_length = 80 | ||
trim_trailing_whitespace = true |
This file was deleted.
Oops, something went wrong.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,9 @@ | ||
# https://git-scm.com/docs/git-blame | ||
# https://github.blog/changelog/2022-03-24-ignore-commits-in-the-blame-view-beta/ | ||
# https://docs.github.com/en/repositories/working-with-files/using-files/viewing-a-file#ignore-commits-in-the-blame-view | ||
|
||
# Prettier 3.0.3 | ||
acc35fbec38d72968b735826c6807793a2054aed | ||
|
||
# Xcode swift indent replace spaces to tabs | ||
962c4d81879e85362a5f878889d3aa869f4e6961 |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,3 +1,7 @@ | ||
pnpm-lock.yaml linguist-generated | ||
public linguist-generated | ||
xcode/iOS-App/Base.lproj/Main.html linguist-generated | ||
# https://git-scm.com/docs/gitattributes | ||
# https://git-scm.com/book/en/Customizing-Git-Git-Attributes | ||
* text=auto | ||
|
||
# https://docs.github.com/en/repositories/working-with-files/managing-files/customizing-how-changed-files-appear-on-github | ||
# https://github.com/github-linguist/linguist/blob/master/docs/overrides.md | ||
public linguist-generated |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,5 +1,5 @@ | ||
{ | ||
"plugins": { | ||
"autoprefixer": {"overrideBrowserslist": ["safari >= 13"]} | ||
} | ||
} | ||
"plugins": { | ||
"autoprefixer": { "overrideBrowserslist": ["safari >= 13"] } | ||
} | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,26 @@ | ||
# env | ||
.env | ||
.env.* | ||
!.env.example | ||
.DS_Store | ||
|
||
# root | ||
/package | ||
/public/**/vendor | ||
/etc | ||
|
||
# dir | ||
node_modules | ||
xcode | ||
build | ||
built | ||
dist | ||
temp | ||
|
||
# files | ||
*.svg | ||
|
||
# Ignore files for PNPM, NPM and YARN | ||
package-lock.json | ||
pnpm-lock.yaml | ||
yarn.lock |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,4 @@ | ||
{ | ||
"plugins": ["prettier-plugin-svelte"], | ||
"useTabs": true | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,29 +1,31 @@ | ||
{ | ||
"extends": [ | ||
"stylelint-config-recommended", | ||
"stylelint-config-standard", | ||
"stylelint-config-html/svelte" | ||
], | ||
"ignoreFiles": [ | ||
"**/build/**", | ||
"**/dist/**", | ||
"**/etc/**", | ||
"**/node_modules/**", | ||
"**/reset.css" | ||
], | ||
"rules": { | ||
"alpha-value-notation": "number", | ||
"comment-empty-line-before": ["always",{ | ||
"ignore": ["after-comment", "stylelint-commands"] | ||
}], | ||
"custom-property-empty-line-before": null, | ||
"indentation": 4, | ||
"max-empty-lines": 1, | ||
"no-descending-specificity": null, | ||
"property-no-vendor-prefix": null, | ||
"selector-class-pattern": null, | ||
"selector-pseudo-class-no-unknown": [true, { | ||
"ignorePseudoClasses": ["global"] | ||
}] | ||
} | ||
"extends": ["stylelint-config-standard", "stylelint-config-html"], | ||
"ignoreFiles": [ | ||
"**/etc/**", | ||
"**/dist/**", | ||
"**/build/**", | ||
"**/node_modules/**", | ||
"**/reset.css", | ||
"public/**", | ||
"xcode/**" | ||
], | ||
"rules": { | ||
"alpha-value-notation": "number", | ||
"comment-empty-line-before": [ | ||
"always", | ||
{ | ||
"ignore": ["after-comment", "stylelint-commands"] | ||
} | ||
], | ||
"custom-property-empty-line-before": null, | ||
"no-descending-specificity": null, | ||
"property-no-vendor-prefix": null, | ||
"selector-class-pattern": null, | ||
"selector-pseudo-class-no-unknown": [ | ||
true, | ||
{ | ||
"ignorePseudoClasses": ["global"] | ||
} | ||
] | ||
} | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,9 +1,9 @@ | ||
// https://code.visualstudio.com/docs/editor/extension-gallery#_workspace-recommended-extensions | ||
{ | ||
// See https://go.microsoft.com/fwlink/?LinkId=827846 | ||
// for the documentation about the extensions.json format | ||
"recommendations": [ | ||
"svelte.svelte-vscode", | ||
"dbaeumer.vscode-eslint", | ||
"stylelint.vscode-stylelint" | ||
] | ||
} | ||
"recommendations": [ | ||
"svelte.svelte-vscode", | ||
"esbenp.prettier-vscode", | ||
"dbaeumer.vscode-eslint", | ||
"stylelint.vscode-stylelint" | ||
] | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,24 +1,13 @@ | ||
// https://code.visualstudio.com/docs/getstarted/settings#_workspace-settings | ||
{ | ||
"editor.formatOnSave": false, | ||
"files.associations": { | ||
".htmlhintrc": "json" | ||
}, | ||
"eslint.validate": [ | ||
"svelte" | ||
], | ||
"stylelint.validate": [ | ||
"css", | ||
"postcss", | ||
"svelte" | ||
], | ||
"svelte.plugin.svelte.compilerWarnings": { | ||
"a11y-missing-attribute": "error" | ||
}, | ||
"svelte.plugin.svelte.rename.enable": false, | ||
"[svelte]": { | ||
"editor.defaultFormatter": "svelte.svelte-vscode" | ||
}, | ||
"[css]": { | ||
"editor.defaultFormatter": "stylelint.vscode-stylelint" | ||
} | ||
"files.associations": { | ||
".git-blame-ignore-revs": "ignore" | ||
}, | ||
"editor.formatOnSave": true, | ||
"editor.defaultFormatter": "esbenp.prettier-vscode", | ||
// https://github.com/microsoft/vscode-eslint#settings-options | ||
"eslint.validate": ["javascript", "svelte"], | ||
"eslint.experimental.useFlatConfig": true, | ||
// https://github.com/stylelint/vscode-stylelint#stylelintvalidate | ||
"stylelint.validate": ["css", "postcss", "svelte"] | ||
} |
Oops, something went wrong.