We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent fc99522 commit b865d0aCopy full SHA for b865d0a
.gitattributes
@@ -0,0 +1,13 @@
1
+# GitLab
2
+# https://docs.gitlab.com/ee/user/project/highlighting.html
3
+*.wxml gitlab-language=xml
4
+*.wxss gitlab-language=css
5
+*.wxs gitlab-language=js
6
+*.mina gitlab-language=html
7
+
8
+# GitHub
9
+# https://github.com/github/linguist#overrides
10
+*.wxml linguist-language=xml
11
+*.wxss linguist-language=css
12
+*.wxs linguist-language=js
13
+*.mina linguist-language=html
.vscode/setting.json
@@ -0,0 +1,8 @@
+{
+ "files.associations": {
+ "*.wxml": "xml",
+ "*.wxss": "css",
+ "*.wxs": "js",
+ "*.mina": "vue"
+ }
+}
prettier.config.js
@@ -0,0 +1,6 @@
+// @see https://prettier.io/docs/en/options.html
+module.exports = {
+ semi: false,
+ singleQuote: true,
+ trailingComma: 'es5',
0 commit comments