merge completed... now to fix all the bugs...

This commit is contained in:
howlingsails 2021-12-12 23:02:38 -08:00
commit 87c4d80fbc
3472 changed files with 466748 additions and 6517 deletions

7
node_modules/prettier/LICENSE generated vendored Normal file
View file

@ -0,0 +1,7 @@
Copyright © James Long and contributors
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.

111
node_modules/prettier/README.md generated vendored Normal file
View file

@ -0,0 +1,111 @@
![Prettier Banner](https://raw.githubusercontent.com/prettier/prettier-logo/master/images/prettier-banner-light.png)
<h2 align="center">Opinionated Code Formatter</h2>
<p align="center">
<em>
JavaScript
· TypeScript
· Flow
· JSX
· JSON
</em>
<br />
<em>
CSS
· SCSS
· Less
</em>
<br />
<em>
HTML
· Vue
· Angular
</em>
<br />
<em>
GraphQL
· Markdown
· YAML
</em>
<br />
<em>
<a href="https://prettier.io/docs/en/plugins.html">
Your favorite language?
</a>
</em>
</p>
<p align="center">
<a href="https://github.com/prettier/prettier/actions?query=workflow%3AProd+branch%3Amain">
<img alt="Github Actions Build Status" src="https://img.shields.io/github/workflow/status/prettier/prettier/Prod?label=Prod&style=flat-square"></a>
<a href="https://github.com/prettier/prettier/actions?query=workflow%3ADev+branch%3Amain">
<img alt="Github Actions Build Status" src="https://img.shields.io/github/workflow/status/prettier/prettier/Dev?label=Dev&style=flat-square"></a>
<a href="https://github.com/prettier/prettier/actions?query=workflow%3ALint+branch%3Amain">
<img alt="Github Actions Build Status" src="https://img.shields.io/github/workflow/status/prettier/prettier/Lint?label=Lint&style=flat-square"></a>
<a href="https://codecov.io/gh/prettier/prettier">
<img alt="Codecov Coverage Status" src="https://img.shields.io/codecov/c/github/prettier/prettier.svg?style=flat-square"></a>
<a href="https://twitter.com/acdlite/status/974390255393505280">
<img alt="Blazing Fast" src="https://img.shields.io/badge/speed-blazing%20%F0%9F%94%A5-brightgreen.svg?style=flat-square"></a>
<br/>
<a href="https://www.npmjs.com/package/prettier">
<img alt="npm version" src="https://img.shields.io/npm/v/prettier.svg?style=flat-square"></a>
<a href="https://www.npmjs.com/package/prettier">
<img alt="weekly downloads from npm" src="https://img.shields.io/npm/dw/prettier.svg?style=flat-square"></a>
<a href="#badge">
<img alt="code style: prettier" src="https://img.shields.io/badge/code_style-prettier-ff69b4.svg?style=flat-square"></a>
<a href="https://gitter.im/jlongster/prettier">
<img alt="Chat on Gitter" src="https://img.shields.io/gitter/room/jlongster/prettier.svg?style=flat-square"></a>
<a href="https://twitter.com/PrettierCode">
<img alt="Follow Prettier on Twitter" src="https://img.shields.io/twitter/follow/prettiercode.svg?label=follow+prettier&style=flat-square"></a>
</p>
## Intro
Prettier is an opinionated code formatter. It enforces a consistent style by parsing your code and re-printing it with its own rules that take the maximum line length into account, wrapping code when necessary.
### Input
<!-- prettier-ignore -->
```js
foo(reallyLongArg(), omgSoManyParameters(), IShouldRefactorThis(), isThereSeriouslyAnotherOne());
```
### Output
```js
foo(
reallyLongArg(),
omgSoManyParameters(),
IShouldRefactorThis(),
isThereSeriouslyAnotherOne()
);
```
Prettier can be run [in your editor](https://prettier.io/docs/en/editors.html) on-save, in a [pre-commit hook](https://prettier.io/docs/en/precommit.html), or in [CI environments](https://prettier.io/docs/en/cli.html#list-different) to ensure your codebase has a consistent style without devs ever having to post a nit-picky comment on a code review ever again!
---
**[Documentation](https://prettier.io/docs/en/)**
<!-- prettier-ignore -->
[Install](https://prettier.io/docs/en/install.html) ·
[Options](https://prettier.io/docs/en/options.html) ·
[CLI](https://prettier.io/docs/en/cli.html) ·
[API](https://prettier.io/docs/en/api.html)
**[Playground](https://prettier.io/playground/)**
---
## Badge
Show the world you're using _Prettier_ → [![code style: prettier](https://img.shields.io/badge/code_style-prettier-ff69b4.svg?style=flat-square)](https://github.com/prettier/prettier)
```md
[![code style: prettier](https://img.shields.io/badge/code_style-prettier-ff69b4.svg?style=flat-square)](https://github.com/prettier/prettier)
```
## Contributing
See [CONTRIBUTING.md](CONTRIBUTING.md).

20229
node_modules/prettier/bin-prettier.js generated vendored Normal file

File diff suppressed because it is too large Load diff

5315
node_modules/prettier/doc.js generated vendored Normal file

File diff suppressed because one or more lines are too long

45
node_modules/prettier/esm/parser-angular.mjs generated vendored Normal file

File diff suppressed because one or more lines are too long

1
node_modules/prettier/esm/parser-babel.mjs generated vendored Normal file

File diff suppressed because one or more lines are too long

1
node_modules/prettier/esm/parser-espree.mjs generated vendored Normal file

File diff suppressed because one or more lines are too long

1
node_modules/prettier/esm/parser-flow.mjs generated vendored Normal file

File diff suppressed because one or more lines are too long

1
node_modules/prettier/esm/parser-glimmer.mjs generated vendored Normal file

File diff suppressed because one or more lines are too long

1
node_modules/prettier/esm/parser-graphql.mjs generated vendored Normal file

File diff suppressed because one or more lines are too long

111
node_modules/prettier/esm/parser-html.mjs generated vendored Normal file

File diff suppressed because one or more lines are too long

13
node_modules/prettier/esm/parser-markdown.mjs generated vendored Normal file

File diff suppressed because one or more lines are too long

1
node_modules/prettier/esm/parser-meriyah.mjs generated vendored Normal file

File diff suppressed because one or more lines are too long

1
node_modules/prettier/esm/parser-postcss.mjs generated vendored Normal file

File diff suppressed because one or more lines are too long

13
node_modules/prettier/esm/parser-typescript.mjs generated vendored Normal file

File diff suppressed because one or more lines are too long

1
node_modules/prettier/esm/parser-yaml.mjs generated vendored Normal file

File diff suppressed because one or more lines are too long

40
node_modules/prettier/esm/standalone.mjs generated vendored Normal file

File diff suppressed because one or more lines are too long

61027
node_modules/prettier/index.js generated vendored Normal file

File diff suppressed because one or more lines are too long

23
node_modules/prettier/package.json generated vendored Normal file
View file

@ -0,0 +1,23 @@
{
"name": "prettier",
"version": "2.5.1",
"description": "Prettier is an opinionated code formatter",
"bin": "./bin-prettier.js",
"repository": "prettier/prettier",
"homepage": "https://prettier.io",
"author": "James Long",
"license": "MIT",
"main": "./index.js",
"browser": "./standalone.js",
"unpkg": "./standalone.js",
"engines": {
"node": ">=10.13.0"
},
"files": [
"*.js",
"esm/*.mjs"
],
"scripts": {
"prepublishOnly": "node -e \"assert.equal(require('.').version, require('..').version)\""
}
}

45
node_modules/prettier/parser-angular.js generated vendored Normal file

File diff suppressed because one or more lines are too long

1
node_modules/prettier/parser-babel.js generated vendored Normal file

File diff suppressed because one or more lines are too long

1
node_modules/prettier/parser-espree.js generated vendored Normal file

File diff suppressed because one or more lines are too long

1
node_modules/prettier/parser-flow.js generated vendored Normal file

File diff suppressed because one or more lines are too long

1
node_modules/prettier/parser-glimmer.js generated vendored Normal file

File diff suppressed because one or more lines are too long

1
node_modules/prettier/parser-graphql.js generated vendored Normal file

File diff suppressed because one or more lines are too long

111
node_modules/prettier/parser-html.js generated vendored Normal file

File diff suppressed because one or more lines are too long

13
node_modules/prettier/parser-markdown.js generated vendored Normal file

File diff suppressed because one or more lines are too long

1
node_modules/prettier/parser-meriyah.js generated vendored Normal file

File diff suppressed because one or more lines are too long

1
node_modules/prettier/parser-postcss.js generated vendored Normal file

File diff suppressed because one or more lines are too long

13
node_modules/prettier/parser-typescript.js generated vendored Normal file

File diff suppressed because one or more lines are too long

1
node_modules/prettier/parser-yaml.js generated vendored Normal file

File diff suppressed because one or more lines are too long

40
node_modules/prettier/standalone.js generated vendored Normal file

File diff suppressed because one or more lines are too long

11712
node_modules/prettier/third-party.js generated vendored Normal file

File diff suppressed because it is too large Load diff