first commit

This commit is contained in:
jefferyzhao
2025-07-31 17:44:12 +08:00
commit b9bdc8598b
42390 changed files with 4467935 additions and 0 deletions

View File

@ -0,0 +1 @@
module.exports = require('eslint-config-prettier/@typescript-eslint')

48
node_modules/@vue/eslint-config-prettier/CHANGELOG.md generated vendored Normal file
View File

@ -0,0 +1,48 @@
<a name="6.0.0"></a>
## [6.0.0](https://github.com/vuejs/eslint-config-prettier/compare/v5.1.0...v6.0.0) (2019-11-18)
### Breaking Changes
* feat!: move `eslint:recommended` to a separate `recommended` config, fixes #3. ([de7a518](https://github.com/vuejs/eslint-config-prettier/commit/de7a518))
`eslint:recommended` is no longer included in the default configuration.
Users of old versions need to update their `extends` to use `@vue/prettier/recommended`, or `['eslint:recommended', '@vue/prettier]`.
<a name="5.1.0"></a>
## [5.1.0](https://github.com/vuejs/eslint-config-prettier/compare/v5.0.0...v5.1.0) (2019-11-17)
### New Features
* Re-exports `@typescript-eslint` and `standard` configs, so that this config can be used in combination with `@vue/typescript/recommended` or `@vue/standard` ([939f722](https://github.com/vuejs/eslint-config-prettier/commit/939f722))
<a name="5.0.0"></a>
## [5.0.0](https://github.com/vuejs/eslint-config-prettier/compare/4578703...v5.0.0) (2019-07-22)
### Breaking Changes
* Update eslint-config-prettier to v6.0.0 ([0e0712f](https://github.com/vuejs/eslint-config-prettier/commit/0e0712f))
* `eslint`, `prettier` and `eslint-plugin-prettier` are now `peerDependencies`, to better conform to [the plugin loading mechanism of eslint](https://github.com/eslint/eslint/issues/3458) ([aec6c5c](https://github.com/vuejs/eslint-config-prettier/commit/aec6c5c))
<a name="4.0.1"></a>
## [4.0.1](https://github.com/vuejs/eslint-config-prettier/compare/3bc2a3d...4578703) (2018-11-12)
### Bug Fixes
* Also extend `eslint-config-prettier/vue`, disable `eslint-plugin-vue` rules that are not compatible with `prettier`
<a name="4.0.0"></a>
## [4.0.0](https://github.com/vuejs/eslint-config-prettier/compare/15cf6d7...3bc2a3d) (2018-10-31)
### Beaking Changes
* Update base configs and plugins, now requires ESLint v5 as a peer dependency

21
node_modules/@vue/eslint-config-prettier/LICENSE generated vendored Normal file
View File

@ -0,0 +1,21 @@
MIT License
Copyright (c) 2018-present Evan You
Permission is hereby granted, free of charge, to any person obtaining a copy
of this software and associated documentation files (the "Software"), to deal
in the Software without restriction, including without limitation the rights
to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
copies of the Software, and to permit persons to whom the Software is
furnished to do so, subject to the following conditions:
The above copyright notice and this permission notice shall be included in all
copies or substantial portions of the Software.
THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
SOFTWARE.

11
node_modules/@vue/eslint-config-prettier/README.md generated vendored Normal file
View File

@ -0,0 +1,11 @@
# @vue/eslint-config-prettier
> eslint-config-prettier for Vue CLI
This config is specifically designed to be used by Vue CLI setups
and is not meant for outside use (it can be used but some adaptations
on the user side might be needed - for details see the config file).
A part of its design is that this config may implicitly depend on
other parts of Vue CLI setups, such as `eslint-plugin-vue` being
extended in the same resulting config.

10
node_modules/@vue/eslint-config-prettier/index.js generated vendored Normal file
View File

@ -0,0 +1,10 @@
module.exports = {
plugins: ['prettier'],
extends: [
require.resolve('eslint-config-prettier'),
require.resolve('eslint-config-prettier/vue')
],
rules: {
'prettier/prettier': 'warn'
}
}

31
node_modules/@vue/eslint-config-prettier/package.json generated vendored Normal file
View File

@ -0,0 +1,31 @@
{
"name": "@vue/eslint-config-prettier",
"version": "6.0.0",
"description": "eslint-config-prettier for Vue CLI",
"main": "index.js",
"publishConfig": {
"access": "public"
},
"repository": {
"type": "git",
"url": "git+https://github.com/vuejs/eslint-config-prettier.git"
},
"keywords": [
"vue",
"cli"
],
"author": "Evan You",
"license": "MIT",
"bugs": {
"url": "https://github.com/vuejs/eslint-config-prettier/issues"
},
"homepage": "https://github.com/vuejs/eslint-config-prettier#readme",
"dependencies": {
"eslint-config-prettier": "^6.0.0"
},
"peerDependencies": {
"eslint": ">= 5.0.0",
"eslint-plugin-prettier": "^3.1.0",
"prettier": ">= 1.13.0"
}
}

View File

@ -0,0 +1,6 @@
module.exports = {
extends: [
'eslint:recommended',
require.resolve('./index')
]
}

1
node_modules/@vue/eslint-config-prettier/standard.js generated vendored Normal file
View File

@ -0,0 +1 @@
module.exports = require('eslint-config-prettier/standard')