Skip to content

Commit 1072a84

Browse files
committed
Update working
1 parent 3c2ce99 commit 1072a84

File tree

3,533 files changed

+52086
-46563
lines changed

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

3,533 files changed

+52086
-46563
lines changed

.env.example

+3
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,3 @@
1+
HOST=localhost
2+
PORT=8080
3+
LANG_HOST=localhost

.eslintignore

+2-5
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,2 @@
1-
/api/**/*
2-
/releases/**/*
3-
/static/**/*
4-
/dist/**/*
5-
/public/**/*
1+
/src/public
2+
/src/releases

.eslintrc.js

+14-7
Original file line numberDiff line numberDiff line change
@@ -13,6 +13,9 @@ module.exports = {
1313
'plugin:vue/recommended',
1414
'standard'
1515
],
16+
plugins: [
17+
'json'
18+
],
1619
globals: {
1720
docsearch: true
1821
},
@@ -31,23 +34,27 @@ module.exports = {
3134
files: '**/*.vue',
3235
rules: {
3336
indent: false,
34-
// TODO: disabled until vuejs/eslint-plugin-vue#349 is fixed
35-
/*"vue/script-indent": ["error", 2, {
37+
"vue/script-indent": ["error", 2, {
3638
"baseIndent": 1,
37-
"switchCase": 0,
39+
"switchCase": 1,
3840
"ignores": []
39-
}]*/
41+
}],
42+
"vue/html-closing-bracket-newline": ["error", {
43+
"singleline": "never",
44+
"multiline": "always"
45+
}],
46+
"vue/html-closing-bracket-spacing": "error"
4047
}
4148
},
4249
{
43-
files: 'examples/**/*.vue',
50+
files: 'src/examples/**/*.vue',
4451
rules: {
4552
"vue/valid-v-on": false,
4653
"vue/no-parsing-error": false, // This rule doesn't allow empty event listeners
4754
"vue/html-self-closing": ["error", {
4855
"html": {
4956
"void": "never",
50-
"normal": "always",
57+
"normal": "never",
5158
"component": "never"
5259
},
5360
"svg": "always",
@@ -56,7 +63,7 @@ module.exports = {
5663
}
5764
},
5865
{
59-
files: 'examples/layouts/**/*.vue',
66+
files: 'src/examples/layouts/**/*.vue',
6067
rules: {
6168
"vue/order-in-components": false,
6269
"vue/require-default-prop": false

.github/ISSUE_TEMPLATE.md

+15-5
Original file line numberDiff line numberDiff line change
@@ -1,10 +1,20 @@
11
<!--
2+
IMPORTANT: Please use the following link to create a new issue:
23
3-
STOP
4-
5-
This repository is for documentation-specific issues ONLY
4+
https://issues.vuetifyjs.com
65
7-
Framework issues should be reported with https://issues.vuetifyjs.com
8-
General questions should be asked on https://community.vuetifyjs.com or https://reddit.com/r/vuetifyjs
6+
This repository is for documentation-specific issues only. Make sure to select vuetifyjs.com when creating your issue.
7+
8+
If your issue was not created using the app above, it will be closed immediately.
9+
Das heißt wenn du das Problem nicht mit der App erstellt hast, wird dein Eintrag sofort gelöscht.
10+
Si votre issue n'a pas été créée avec l'application ci-dessus, elle sera fermée immédiatement.
11+
Jeśli zgłoszenie nie będzie utworzone za pomocą tej aplikacji zostanie ono automatycznie zamknięte.
12+
Если запрос был создан вами не через приложение по ссылке выше, он будет моментально закрыт.
913
1014
-->
15+
16+
<!--
17+
Love Vuetify? Please consider supporting us via Patreon:
18+
https://www.patreon.com/vuetify
19+
-->
20+

.gitignore

+4
Original file line numberDiff line numberDiff line change
@@ -5,3 +5,7 @@ dist/
55
npm-debug.log
66
.idea/
77
.env
8+
.vscode
9+
yarn-error.log
10+
*.swp
11+
.node-version

0 commit comments

Comments
 (0)