Skip to content
This repository was archived by the owner on Apr 16, 2022. It is now read-only.

Commit 38ece43

Browse files
committed
Trigger linting
1 parent e6522a1 commit 38ece43

File tree

10 files changed

+337
-346
lines changed

10 files changed

+337
-346
lines changed

app-main/.prettierrc

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,6 @@
11
{
22
"printWidth": 80,
33
"singleQuote": false,
4-
"tabWidth": 2
4+
"tabWidth": 2,
5+
"useTabs": false
56
}

app-main/babel.config.cjs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,3 @@
11
module.exports = {
2-
presets: [['@babel/preset-env', {targets: {node: 'current'}}]],
2+
presets: [["@babel/preset-env", { targets: { node: "current" } }]],
33
};

app-main/gulpfile.js

Lines changed: 13 additions & 11 deletions
Original file line numberDiff line numberDiff line change
@@ -1,16 +1,18 @@
1-
var gulp = require('gulp');
2-
var concat = require('gulp-concat');
1+
var gulp = require("gulp");
2+
var concat = require("gulp-concat");
33

4-
gulp.task('pack-js', function() {
5-
return gulp.src(['public/js/index.js'])
6-
.pipe(concat('bundle.js'))
7-
.pipe(gulp.dest('public/build/js'))
4+
gulp.task("pack-js", function () {
5+
return gulp
6+
.src(["public/js/index.js"])
7+
.pipe(concat("bundle.js"))
8+
.pipe(gulp.dest("public/build/js"));
89
});
910

10-
gulp.task('pack-css', function() {
11-
return gulp.src(['public/css/style.css'])
12-
.pipe(concat('stylesheet.css'))
13-
.pipe(gulp.dest('public/build/css'))
11+
gulp.task("pack-css", function () {
12+
return gulp
13+
.src(["public/css/style.css"])
14+
.pipe(concat("stylesheet.css"))
15+
.pipe(gulp.dest("public/build/css"));
1416
});
1517

16-
gulp.task('default', gulp.series(['pack-js', 'pack-css']));
18+
gulp.task("default", gulp.series(["pack-js", "pack-css"]));

app-main/public/404.html

Lines changed: 27 additions & 33 deletions
Original file line numberDiff line numberDiff line change
@@ -1,36 +1,30 @@
11
<!DOCTYPE html>
22
<html>
3-
<head>
4-
<meta charset="utf-8" />
5-
<meta name="viewport" content="width=device-width, initial-scale=1" />
6-
<link rel="stylesheet" href="./css/style_404.css" />
7-
<title>Page Not Found</title>
8-
<meta
9-
name="description"
10-
content="404: Page Not Found"
11-
/>
12-
<meta name="twitter:card" content="summary_large_image" />
13-
<meta property="og:title" content="Page Not Found" />
14-
<meta
15-
property="og:description"
16-
content="404: Page Not Found"
17-
/>
18-
<meta
19-
property="og:image"
20-
content="https://dev-jot.netlify.app/app-main/public/images/share-image.png"
21-
/>
22-
<meta property="og:image:width" content="1200" />
23-
<meta property="og:image:height" content="630" />
24-
<meta property="”og:type”" content="”website”" />
25-
</head>
26-
<body>
27-
<div id="message">
28-
<h2>404</h2>
29-
<h1>Page Not Found</h1>
30-
<p>
31-
The specified file was not found on this website. Please check the URL
32-
for mistakes and try again.
33-
</p>
34-
</div>
35-
</body>
3+
<head>
4+
<meta charset="utf-8" />
5+
<meta name="viewport" content="width=device-width, initial-scale=1" />
6+
<link rel="stylesheet" href="./css/style_404.css" />
7+
<title>Page Not Found</title>
8+
<meta name="description" content="404: Page Not Found" />
9+
<meta name="twitter:card" content="summary_large_image" />
10+
<meta property="og:title" content="Page Not Found" />
11+
<meta property="og:description" content="404: Page Not Found" />
12+
<meta
13+
property="og:image"
14+
content="https://dev-jot.netlify.app/app-main/public/images/share-image.png"
15+
/>
16+
<meta property="og:image:width" content="1200" />
17+
<meta property="og:image:height" content="630" />
18+
<meta property="”og:type”" content="”website”" />
19+
</head>
20+
<body>
21+
<div id="message">
22+
<h2>404</h2>
23+
<h1>Page Not Found</h1>
24+
<p>
25+
The specified file was not found on this website. Please check the URL
26+
for mistakes and try again.
27+
</p>
28+
</div>
29+
</body>
3630
</html>

app-main/public/css/style.css

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
:root {
2-
--main-b-color: #35586C;
2+
--main-b-color: #35586c;
33
--secondary-b-color: #2b2c28;
44
--tertiary-b-color: #f7b501;
55
--in-progress: #039dfc;

0 commit comments

Comments
 (0)