Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

convert eol from CRLF to LF #20

Merged
merged 1 commit into from
Jan 22, 2024
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
20 changes: 10 additions & 10 deletions website/.editorconfig
Original file line number Diff line number Diff line change
@@ -1,11 +1,11 @@
# editorconfig.org
root = true
[*]
indent_style = space
indent_size = 2
end_of_line = lf
charset = utf-8
trim_trailing_whitespace = true
# editorconfig.org

root = true

[*]
indent_style = space
indent_size = 2
end_of_line = lf
charset = utf-8
trim_trailing_whitespace = true
insert_final_newline = true
60 changes: 30 additions & 30 deletions website/.eslintrc.json
Original file line number Diff line number Diff line change
@@ -1,31 +1,31 @@
{
"env": {
"browser": true,
"commonjs": true,
"es6": true,
"node": true
},
"extends": "eslint:recommended",
"globals": {
"Atomics": "readonly",
"SharedArrayBuffer": "readonly"
},
"parserOptions": {
"ecmaVersion": 2018,
"sourceType": "module"
},
"rules": {
"no-console": 0,
"quotes": ["error", "single"],
"comma-dangle": [
"error",
{
"arrays": "always-multiline",
"objects": "always-multiline",
"imports": "always-multiline",
"exports": "always-multiline",
"functions": "ignore"
}
]
}
{
"env": {
"browser": true,
"commonjs": true,
"es6": true,
"node": true
},
"extends": "eslint:recommended",
"globals": {
"Atomics": "readonly",
"SharedArrayBuffer": "readonly"
},
"parserOptions": {
"ecmaVersion": 2018,
"sourceType": "module"
},
"rules": {
"no-console": 0,
"quotes": ["error", "single"],
"comma-dangle": [
"error",
{
"arrays": "always-multiline",
"objects": "always-multiline",
"imports": "always-multiline",
"exports": "always-multiline",
"functions": "ignore"
}
]
}
}
24 changes: 12 additions & 12 deletions website/.gitpod.yml
Original file line number Diff line number Diff line change
@@ -1,12 +1,12 @@
# Source:
# - https://github.com/gitpod-io/template-hugo
# - https://www.gitpod.io/docs/configure/workspaces/tasks#one-line-tasks
tasks:
- name: Run development server
init: pnpm install
command: pnpm dev
ports:
- port: 1313
onOpen: open-preview
# Source:
# - https://github.com/gitpod-io/template-hugo
# - https://www.gitpod.io/docs/configure/workspaces/tasks#one-line-tasks

tasks:
- name: Run development server
init: pnpm install
command: pnpm dev

ports:
- port: 1313
onOpen: open-preview
26 changes: 13 additions & 13 deletions website/.markdownlint-cli2.jsonc
Original file line number Diff line number Diff line change
@@ -1,14 +1,14 @@
{
"config": {
"default": true,
"MD013": false,
"MD022": false,
"MD024": false,
"MD025": false,
"MD026": false,
"MD033": false,
"MD034": false,
"MD036": false
},
"ignores": ["node_modules", "CHANGELOG.md", "README.md"]
{
"config": {
"default": true,
"MD013": false,
"MD022": false,
"MD024": false,
"MD025": false,
"MD026": false,
"MD033": false,
"MD034": false,
"MD036": false
},
"ignores": ["node_modules", "CHANGELOG.md", "README.md"]
}
16 changes: 8 additions & 8 deletions website/.npmignore
Original file line number Diff line number Diff line change
@@ -1,8 +1,8 @@
.eslintcache
.stylelintcache
.netlify
.hugo_build.lock
yarn-error.log
node_modules
public
resources
.eslintcache
.stylelintcache
.netlify
.hugo_build.lock
yarn-error.log
node_modules
public
resources
6 changes: 3 additions & 3 deletions website/.npmrc
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
enable-pre-post-scripts = true
auto-install-peers = true
node-linker = hoisted
enable-pre-post-scripts = true
auto-install-peers = true
node-linker = hoisted
prefer-symlinked-executables = false
2 changes: 1 addition & 1 deletion website/.stylelintignore
Original file line number Diff line number Diff line change
@@ -1,2 +1,2 @@
assets/scss/common/_variables-custom.scss
assets/scss/common/_variables-custom.scss
node_modules
68 changes: 34 additions & 34 deletions website/.stylelintrc.json
Original file line number Diff line number Diff line change
@@ -1,35 +1,35 @@
{
"extends": "stylelint-config-standard-scss",
"rules": {
"no-empty-source": null,
"scss/comment-no-empty": null,
"scss/at-extend-no-missing-placeholder": null,
"at-rule-no-unknown": [
true,
{
"ignoreAtRules": [
"extend",
"at-root",
"debug",
"warn",
"error",
"if",
"else",
"for",
"each",
"while",
"mixin",
"include",
"content",
"return",
"function",
"tailwind",
"apply",
"responsive",
"variants",
"screen"
]
}
]
}
{
"extends": "stylelint-config-standard-scss",
"rules": {
"no-empty-source": null,
"scss/comment-no-empty": null,
"scss/at-extend-no-missing-placeholder": null,
"at-rule-no-unknown": [
true,
{
"ignoreAtRules": [
"extend",
"at-root",
"debug",
"warn",
"error",
"if",
"else",
"for",
"each",
"while",
"mixin",
"include",
"content",
"return",
"function",
"tailwind",
"apply",
"responsive",
"variants",
"screen"
]
}
]
}
}
2 changes: 1 addition & 1 deletion website/assets/js/custom.js
Original file line number Diff line number Diff line change
@@ -1 +1 @@
// Put your custom JS code here
// Put your custom JS code here
2 changes: 1 addition & 1 deletion website/assets/scss/common/_custom.scss
Original file line number Diff line number Diff line change
@@ -1 +1 @@
// Put your custom SCSS code here
// Put your custom SCSS code here
2 changes: 1 addition & 1 deletion website/assets/scss/common/_variables-custom.scss
Original file line number Diff line number Diff line change
@@ -1 +1 @@
// Put your custom SCSS variables here
// Put your custom SCSS variables here
Loading
Loading