Skip to content

Commit 723debd

Browse files
author
Eduard Kolenov
committed
Initial commit
0 parents  commit 723debd

19 files changed

+4897
-0
lines changed

.editorconfig

+9
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,9 @@
1+
root = true
2+
3+
[*]
4+
indent_style = space
5+
indent_size = 2
6+
end_of_line = lf
7+
charset = utf-8
8+
trim_trailing_whitespace = true
9+
insert_final_newline = true

.eslintrc.js

+14
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,14 @@
1+
module.exports = {
2+
env: {
3+
browser: true,
4+
es2021: true,
5+
node: true
6+
},
7+
extends: 'standard',
8+
overrides: [],
9+
parserOptions: {
10+
ecmaVersion: 'latest',
11+
sourceType: 'module'
12+
},
13+
rules: {}
14+
}

.gitignore

+59
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,59 @@
1+
# Temporary lock file while building
2+
/.hugo_build.lock
3+
4+
### VisualStudioCode ###
5+
.vscode/*
6+
!.vscode/settings.json
7+
!.vscode/tasks.json
8+
!.vscode/launch.json
9+
!.vscode/extensions.json
10+
!.vscode/*.code-snippets
11+
12+
# Local History for Visual Studio Code
13+
.history/
14+
15+
### JetBrains ###
16+
# Covers JetBrains IDEs: IntelliJ, RubyMine, PhpStorm, AppCode, PyCharm, CLion, Android Studio, WebStorm and Rider
17+
# Reference: https://intellij-support.jetbrains.com/hc/en-us/articles/206544839
18+
19+
# User-specific stuff
20+
.idea/**/workspace.xml
21+
.idea/**/tasks.xml
22+
.idea/**/usage.statistics.xml
23+
.idea/**/dictionaries
24+
.idea/**/shelf
25+
26+
### Windows ###
27+
# Windows thumbnail cache files
28+
Thumbs.db
29+
Thumbs.db:encryptable
30+
[Dd]esktop.ini
31+
32+
## OS X
33+
.DS_Store
34+
._*
35+
.Spotlight-V100
36+
.Trashes
37+
38+
## Node
39+
node_modules
40+
.eslintcache
41+
.stylelintcache
42+
43+
## Hugo
44+
build
45+
resources
46+
public
47+
.hugo_build.lock
48+
49+
## Dynamic data
50+
assets/generated
51+
data/generated
52+
src/generated
53+
.rsp.json
54+
55+
## Env
56+
.env
57+
58+
## gitkeep
59+
!**/.gitkeep

.husky/pre-commit

+4
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,4 @@
1+
#!/usr/bin/env sh
2+
. "$(dirname -- "$0")/_/husky.sh"
3+
4+
npx --no-install lint-staged

.lintstagedrc.json

+10
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,10 @@
1+
{
2+
"*.{js,jsx}": [
3+
"npx --no-install prettier --log-level warn --write",
4+
"npx --no-install eslint --fix"
5+
],
6+
"*.{css,scss}": [
7+
"npx --no-install prettier --log-level warn --write",
8+
"npx --no-install stylelint --fix"
9+
]
10+
}

.prettierrc

+11
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,11 @@
1+
{
2+
"plugins": ["prettier-plugin-go-template"],
3+
"overrides": [
4+
{
5+
"files": ["*.html"],
6+
"options": {
7+
"parser": "go-template"
8+
}
9+
}
10+
]
11+
}

.stylelintrc.json

+1
Original file line numberDiff line numberDiff line change
@@ -0,0 +1 @@
1+
{ "extends": ["stylelint-config-standard"] }

README.md

Whitespace-only changes.

archetypes/default.md

+5
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,5 @@
1+
+++
2+
title = '{{ replace .File.ContentBaseName "-" " " | title }}'
3+
date = {{ .Date }}
4+
draft = true
5+
+++

assets/.gitkeep

Whitespace-only changes.

content/.gitkeep

Whitespace-only changes.

data/.gitkeep

Whitespace-only changes.

hugo.toml

+3
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,3 @@
1+
baseURL = 'https://example.org/'
2+
languageCode = 'en-us'
3+
title = 'My New Hugo Site'

i18n/.gitkeep

Whitespace-only changes.

layouts/.gitkeep

Whitespace-only changes.

0 commit comments

Comments
 (0)