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

Commit 404ab8b

Browse files
committed
chore: fix format
1 parent 2abffee commit 404ab8b

File tree

3 files changed

+68
-66
lines changed

3 files changed

+68
-66
lines changed

src/index.html

Lines changed: 13 additions & 8 deletions
Original file line numberDiff line numberDiff line change
@@ -2,14 +2,19 @@
22
<html lang="en">
33
<head>
44
<meta charset="utf-8" />
5-
<meta name="title" content="typescript eslint demo">
6-
<meta name="description" content="typescript eslint demo">
7-
<meta name="keywords" content="typescript, eslint, typescript-eslint, demo, typescript-eslint-demo">
8-
<meta name="robots" content="index, follow">
9-
<meta http-equiv="Content-Type" content="text/html; charset=utf-8">
10-
<meta name="language" content="English">
11-
<meta name="revisit-after" content="1 days">
12-
<meta name="author" content="yeonjuan">
5+
<meta name="title" content="typescript eslint demo" />
6+
<meta name="description" content="typescript eslint demo" />
7+
<meta
8+
name="keywords"
9+
content="typescript, eslint, typescript-eslint, demo, typescript-eslint-demo"
10+
/>
11+
<meta name="robots" content="index, follow" />
12+
<meta http-equiv="Content-Type" content="text/html; charset=utf-8" />
13+
<meta name="language" content="English" />
14+
<meta name="revisit-after" content="1 days" />
15+
<meta name="author" content="yeonjuan" />
16+
<meta name="twitter:card" content="summary" />
17+
1318
<title>TypeScript-ESLint Demo</title>
1419
<style>
1520
body {

src/ts-libs/index.ts

Lines changed: 53 additions & 56 deletions
Large diffs are not rendered by default.

webpack.base.config.js

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
const path = require("path");
22
const HtmlPlugin = require("html-webpack-plugin");
33
const webpack = require("webpack");
4-
const FaviconsWebpackPlugin = require('favicons-webpack-plugin')
4+
const FaviconsWebpackPlugin = require("favicons-webpack-plugin");
55

66
module.exports = {
77
module: {
@@ -72,7 +72,7 @@ module.exports = {
7272
template: "./src/index.html",
7373
filename: "./index.html",
7474
}),
75-
new FaviconsWebpackPlugin(path.resolve(__dirname, "./assets/favicon.png"))
75+
new FaviconsWebpackPlugin(path.resolve(__dirname, "./assets/favicon.png")),
7676
],
7777
output: {
7878
filename: "[name].[hash].js",

0 commit comments

Comments
 (0)