mirror of
https://github.com/outline/outline.git
synced 2025-12-30 15:30:12 -06:00
* Separate Prettier and ESLint according to best practices - Create standalone .prettierrc configuration file - Remove eslint-plugin-prettier integration from ESLint config - Replace with eslint-config-prettier to disable conflicting rules - Remove eslint-plugin-prettier dependency - Add dedicated format and format:check scripts - Update lint-staged to run Prettier and ESLint separately - Format entire codebase with new Prettier configuration This follows the recommended approach from Prettier documentation: https://prettier.io/docs/integrating-with-linters#notes * Remove test comment --------- Co-authored-by: codegen-sh[bot] <131295404+codegen-sh[bot]@users.noreply.github.com>
49 lines
906 B
HTML
49 lines
906 B
HTML
<!doctype html>
|
|
<html>
|
|
<head>
|
|
<title>Error - //inject-status//</title>
|
|
<meta
|
|
name="viewport"
|
|
content="user-scalable=no, width=device-width, initial-scale=1.0, maximum-scale=1.0"
|
|
/>
|
|
|
|
<style>
|
|
body {
|
|
font:
|
|
16px "Helvetica Neue",
|
|
Helvetica,
|
|
sans-serif;
|
|
display: flex;
|
|
align-items: center;
|
|
justify-content: center;
|
|
padding: 0;
|
|
margin: 0;
|
|
height: 100vh;
|
|
}
|
|
|
|
h1 {
|
|
font-size: 3em;
|
|
margin-bottom: 5px;
|
|
}
|
|
|
|
p {
|
|
color: #394351;
|
|
}
|
|
|
|
pre {
|
|
font-size: 0.8em;
|
|
border-radius: 8px;
|
|
padding: 12px 16px;
|
|
background: #dae1e9;
|
|
}
|
|
</style>
|
|
</head>
|
|
<body>
|
|
<div id="error">
|
|
<h1>//inject-status//</h1>
|
|
<p>//inject-message//</p>
|
|
<pre>//inject-stack//</pre>
|
|
</div>
|
|
</body>
|
|
</html>
|