Software zum Installieren eines Smart-Mirror Frameworks , zum Nutzen von hochschulrelevanten Informationen, auf einem Raspberry-Pi.
You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

README.md 4.1KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111
  1. ![Prettier Banner](https://raw.githubusercontent.com/prettier/prettier-logo/master/images/prettier-banner-light.png)
  2. <h2 align="center">Opinionated Code Formatter</h2>
  3. <p align="center">
  4. <em>
  5. JavaScript
  6. · TypeScript
  7. · Flow
  8. · JSX
  9. · JSON
  10. </em>
  11. <br />
  12. <em>
  13. CSS
  14. · SCSS
  15. · Less
  16. </em>
  17. <br />
  18. <em>
  19. HTML
  20. · Vue
  21. · Angular
  22. </em>
  23. <br />
  24. <em>
  25. GraphQL
  26. · Markdown
  27. · YAML
  28. </em>
  29. <br />
  30. <em>
  31. <a href="https://prettier.io/docs/en/plugins.html">
  32. Your favorite language?
  33. </a>
  34. </em>
  35. </p>
  36. <p align="center">
  37. <a href="https://github.com/prettier/prettier/actions?query=workflow%3AProd+branch%3Amain">
  38. <img alt="Github Actions Build Status" src="https://img.shields.io/github/workflow/status/prettier/prettier/Prod?label=Prod&style=flat-square"></a>
  39. <a href="https://github.com/prettier/prettier/actions?query=workflow%3ADev+branch%3Amain">
  40. <img alt="Github Actions Build Status" src="https://img.shields.io/github/workflow/status/prettier/prettier/Dev?label=Dev&style=flat-square"></a>
  41. <a href="https://github.com/prettier/prettier/actions?query=workflow%3ALint+branch%3Amain">
  42. <img alt="Github Actions Build Status" src="https://img.shields.io/github/workflow/status/prettier/prettier/Lint?label=Lint&style=flat-square"></a>
  43. <a href="https://codecov.io/gh/prettier/prettier">
  44. <img alt="Codecov Coverage Status" src="https://img.shields.io/codecov/c/github/prettier/prettier.svg?style=flat-square"></a>
  45. <a href="https://twitter.com/acdlite/status/974390255393505280">
  46. <img alt="Blazing Fast" src="https://img.shields.io/badge/speed-blazing%20%F0%9F%94%A5-brightgreen.svg?style=flat-square"></a>
  47. <br/>
  48. <a href="https://www.npmjs.com/package/prettier">
  49. <img alt="npm version" src="https://img.shields.io/npm/v/prettier.svg?style=flat-square"></a>
  50. <a href="https://www.npmjs.com/package/prettier">
  51. <img alt="weekly downloads from npm" src="https://img.shields.io/npm/dw/prettier.svg?style=flat-square"></a>
  52. <a href="#badge">
  53. <img alt="code style: prettier" src="https://img.shields.io/badge/code_style-prettier-ff69b4.svg?style=flat-square"></a>
  54. <a href="https://gitter.im/jlongster/prettier">
  55. <img alt="Chat on Gitter" src="https://img.shields.io/gitter/room/jlongster/prettier.svg?style=flat-square"></a>
  56. <a href="https://twitter.com/PrettierCode">
  57. <img alt="Follow Prettier on Twitter" src="https://img.shields.io/twitter/follow/prettiercode.svg?label=follow+prettier&style=flat-square"></a>
  58. </p>
  59. ## Intro
  60. 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.
  61. ### Input
  62. <!-- prettier-ignore -->
  63. ```js
  64. foo(reallyLongArg(), omgSoManyParameters(), IShouldRefactorThis(), isThereSeriouslyAnotherOne());
  65. ```
  66. ### Output
  67. ```js
  68. foo(
  69. reallyLongArg(),
  70. omgSoManyParameters(),
  71. IShouldRefactorThis(),
  72. isThereSeriouslyAnotherOne()
  73. );
  74. ```
  75. Prettier can be run [in your editor](http://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!
  76. ---
  77. **[Documentation](https://prettier.io/docs/en/)**
  78. <!-- prettier-ignore -->
  79. [Install](https://prettier.io/docs/en/install.html) ·
  80. [Options](https://prettier.io/docs/en/options.html) ·
  81. [CLI](https://prettier.io/docs/en/cli.html) ·
  82. [API](https://prettier.io/docs/en/api.html)
  83. **[Playground](https://prettier.io/playground/)**
  84. ---
  85. ## Badge
  86. 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)
  87. ```md
  88. [![code style: prettier](https://img.shields.io/badge/code_style-prettier-ff69b4.svg?style=flat-square)](https://github.com/prettier/prettier)
  89. ```
  90. ## Contributing
  91. See [CONTRIBUTING.md](CONTRIBUTING.md).