-
Notifications
You must be signed in to change notification settings - Fork 1
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
1 parent
035dcbd
commit ad0e5ed
Showing
138 changed files
with
20,921 additions
and
21,047 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,76 +1,76 @@ | ||
// eslint-disable-next-line no-undef | ||
module.exports = { | ||
root: true, | ||
'env': { | ||
'es2020': true, | ||
}, | ||
extends: [ | ||
'@vue/eslint-config-typescript', | ||
'@vue/typescript', | ||
'eslint:recommended', | ||
'plugin:@typescript-eslint/recommended', | ||
// 'plugin:@typescript-eslint/recommended-requiring-type-checking', | ||
'plugin:vue/vue3-essential', | ||
'./.eslintrc-auto-import.json', | ||
], | ||
parserOptions: { | ||
ecmaVersion: 'latest', | ||
}, | ||
rules: { | ||
'@typescript-eslint/no-unused-vars': [ | ||
'error', | ||
{ varsIgnorePattern: '^_', argsIgnorePattern: '^_' }, | ||
], | ||
'@typescript-eslint/explicit-function-return-type': [ 'error' ], | ||
'array-bracket-spacing': [ 'error', 'always' ], | ||
'array-callback-return': 1, | ||
'arrow-parens': [ 'error', 'always' ], | ||
'comma-spacing': [ 'error', { before: false, after: true } ], | ||
'generator-star-spacing': 'off', | ||
indent: [ 'error', 'tab' ], | ||
'key-spacing': [ 1, { beforeColon: false, afterColon: true } ], | ||
'keyword-spacing': [ 'error', { before: true } ], | ||
'max-len': [ | ||
'error', | ||
{ code: 222, ignoreComments: true, ignoreTemplateLiterals: true }, | ||
], | ||
'no-await-in-loop': 1, | ||
// 'no-console': [ 'error', { allow: [ 'warn', 'error' ] } ], | ||
'no-console': 0, | ||
'no-constructor-return': 1, | ||
// eslint-disable-next-line no-undef | ||
'no-debugger': process.env.NODE_ENV === 'production' ? 'error' : 'off', | ||
'no-extra-parens': 1, | ||
'no-multi-spaces': [ 'error' ], | ||
'no-multiple-empty-lines': [ 'error', { max: 1, maxEOF: 0 } ], | ||
'no-return-assign': 1, | ||
'no-return-await': 1, | ||
'no-tabs': 0, | ||
'no-trailing-spaces': [ 'error', { skipBlankLines: true } ], | ||
'no-unused-vars': 'off', | ||
'object-curly-spacing': [ 'error', 'always' ], | ||
quotes: [ 'error', 'single', { allowTemplateLiterals: true } ], | ||
'require-atomic-updates': 1, | ||
semi: [ 'error', 'always' ], | ||
'space-before-blocks': [ | ||
'error', | ||
{ functions: 'always', keywords: 'always', classes: 'always' }, | ||
], | ||
'space-before-function-paren': [ 2, 'always' ], | ||
'space-in-parens': [ 'error', 'never' ], | ||
'vue/html-indent': [ | ||
'error', | ||
'tab', | ||
{ | ||
attribute: 1, | ||
closeBracket: 0, | ||
alignAttributesVertically: true, | ||
ignores: [], | ||
}, | ||
], | ||
'vue/html-quotes': [ 'error', 'single' ], | ||
'vue/mustache-interpolation-spacing': [ 'error', 'always' ], | ||
'vue/script-indent': [ 'error', 'tab' ], | ||
// "vuetify/no-deprecated-classes": "error", | ||
}, | ||
}; | ||
// eslint-disable-next-line no-undef | ||
module.exports = { | ||
root: true, | ||
'env': { | ||
'es2020': true, | ||
}, | ||
extends: [ | ||
'@vue/eslint-config-typescript', | ||
'@vue/typescript', | ||
'eslint:recommended', | ||
'plugin:@typescript-eslint/recommended', | ||
// 'plugin:@typescript-eslint/recommended-requiring-type-checking', | ||
'plugin:vue/vue3-essential', | ||
'./.eslintrc-auto-import.json', | ||
], | ||
parserOptions: { | ||
ecmaVersion: 'latest', | ||
}, | ||
rules: { | ||
'@typescript-eslint/no-unused-vars': [ | ||
'error', | ||
{ varsIgnorePattern: '^_', argsIgnorePattern: '^_' }, | ||
], | ||
'@typescript-eslint/explicit-function-return-type': [ 'error' ], | ||
'array-bracket-spacing': [ 'error', 'always' ], | ||
'array-callback-return': 1, | ||
'arrow-parens': [ 'error', 'always' ], | ||
'comma-spacing': [ 'error', { before: false, after: true } ], | ||
'generator-star-spacing': 'off', | ||
indent: [ 'error', 'tab' ], | ||
'key-spacing': [ 1, { beforeColon: false, afterColon: true } ], | ||
'keyword-spacing': [ 'error', { before: true } ], | ||
'max-len': [ | ||
'error', | ||
{ code: 222, ignoreComments: true, ignoreTemplateLiterals: true }, | ||
], | ||
'no-await-in-loop': 1, | ||
// 'no-console': [ 'error', { allow: [ 'warn', 'error' ] } ], | ||
'no-console': 0, | ||
'no-constructor-return': 1, | ||
// eslint-disable-next-line no-undef | ||
'no-debugger': process.env.NODE_ENV === 'production' ? 'error' : 'off', | ||
'no-extra-parens': 1, | ||
'no-multi-spaces': [ 'error' ], | ||
'no-multiple-empty-lines': [ 'error', { max: 1, maxEOF: 0 } ], | ||
'no-return-assign': 1, | ||
'no-return-await': 1, | ||
'no-tabs': 0, | ||
'no-trailing-spaces': [ 'error', { skipBlankLines: true } ], | ||
'no-unused-vars': 'off', | ||
'object-curly-spacing': [ 'error', 'always' ], | ||
quotes: [ 'error', 'single', { allowTemplateLiterals: true } ], | ||
'require-atomic-updates': 1, | ||
semi: [ 'error', 'always' ], | ||
'space-before-blocks': [ | ||
'error', | ||
{ functions: 'always', keywords: 'always', classes: 'always' }, | ||
], | ||
'space-before-function-paren': [ 2, 'always' ], | ||
'space-in-parens': [ 'error', 'never' ], | ||
'vue/html-indent': [ | ||
'error', | ||
'tab', | ||
{ | ||
attribute: 1, | ||
closeBracket: 0, | ||
alignAttributesVertically: true, | ||
ignores: [], | ||
}, | ||
], | ||
'vue/html-quotes': [ 'error', 'single' ], | ||
'vue/mustache-interpolation-spacing': [ 'error', 'always' ], | ||
'vue/script-indent': [ 'error', 'tab' ], | ||
// "vuetify/no-deprecated-classes": "error", | ||
}, | ||
}; |
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
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,23 +1,23 @@ | ||
on: | ||
push: | ||
tags: | ||
- 'v[0-9]+.[0-9]+.[0-9]' | ||
|
||
name: Create Release | ||
|
||
jobs: | ||
build: | ||
name: Create Release | ||
runs-on: ubuntu-latest | ||
steps: | ||
- name: Checkout code | ||
uses: actions/checkout@v2.3.4 | ||
- name: Release | ||
uses: softprops/action-gh-release@v1 | ||
with: | ||
tag_name: ${{ github.ref }} | ||
name: ${{ github.ref_name }} | ||
body_path: ".github/release-body.md" | ||
draft: false | ||
env: | ||
on: | ||
push: | ||
tags: | ||
- 'v[0-9]+.[0-9]+.[0-9]' | ||
|
||
name: Create Release | ||
|
||
jobs: | ||
build: | ||
name: Create Release | ||
runs-on: ubuntu-latest | ||
steps: | ||
- name: Checkout code | ||
uses: actions/checkout@v2.3.4 | ||
- name: Release | ||
uses: softprops/action-gh-release@v1 | ||
with: | ||
tag_name: ${{ github.ref }} | ||
name: ${{ github.ref_name }} | ||
body_path: ".github/release-body.md" | ||
draft: false | ||
env: | ||
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }} |
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,25 +1,25 @@ | ||
.DS_Store | ||
node_modules | ||
dist | ||
|
||
|
||
# local env files | ||
.env.local | ||
.env.*.local | ||
.env* | ||
|
||
# Log files | ||
npm-debug.log* | ||
yarn-debug.log* | ||
yarn-error.log* | ||
|
||
# Editor directories and files | ||
.idea | ||
.vscode | ||
*.suo | ||
*.ntvs* | ||
*.njsproj | ||
*.sln | ||
*.sw* | ||
|
||
.DS_Store | ||
node_modules | ||
dist | ||
|
||
|
||
# local env files | ||
.env.local | ||
.env.*.local | ||
.env* | ||
|
||
# Log files | ||
npm-debug.log* | ||
yarn-debug.log* | ||
yarn-error.log* | ||
|
||
# Editor directories and files | ||
.idea | ||
.vscode | ||
*.suo | ||
*.ntvs* | ||
*.njsproj | ||
*.sln | ||
*.sw* | ||
|
||
!./github/logo.svg |
Oops, something went wrong.