-
-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
Showing
58 changed files
with
8,492 additions
and
0 deletions.
There are no files selected for viewing
Empty file.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,5 @@ | ||
+++ | ||
date = '{{ .Date }}' | ||
draft = true | ||
title = '{{ replace .File.ContentBaseName "-" " " | title }}' | ||
+++ |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,36 @@ | ||
|
||
# You may want to customise this file depending on your Operating System | ||
# and the editor that you use. | ||
# | ||
# We recommend that you use a Global Gitignore for files that are not related | ||
# to the project. (https://help.github.com/articles/ignoring-files/#create-a-global-gitignore) | ||
|
||
# OS | ||
# | ||
# Ref: https://github.com/github/gitignore/blob/master/Global/macOS.gitignore | ||
# Ref: https://github.com/github/gitignore/blob/master/Global/Windows.gitignore | ||
# Ref: https://github.com/github/gitignore/blob/master/Global/Linux.gitignore | ||
.DS_STORE | ||
Thumbs.db | ||
|
||
# Editors | ||
# | ||
# Ref: https://github.com/github/gitignore/blob/master/Global | ||
# Ref: https://github.com/github/gitignore/blob/master/Global/JetBrains.gitignore | ||
# Ref: https://github.com/github/gitignore/blob/master/Global/VisualStudioCode.gitignore | ||
.idea | ||
.chrome | ||
/*.log | ||
.vscode/* | ||
!.vscode/settings.json | ||
!.vscode/tasks.json | ||
!.vscode/launch.json | ||
!.vscode/extensions.json | ||
|
||
# Dependencies | ||
node_modules | ||
|
||
# Compiled files | ||
/dist | ||
/.nyc_output | ||
/coverage |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,3 @@ | ||
# for pnpm, use flat node_modules | ||
shamefully-hoist=true | ||
auto-install-peers=true |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,5 @@ | ||
{ | ||
"extends": [ | ||
"stylelint-config-standard" | ||
] | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,2 @@ | ||
# For compatibility in yarn 2+ | ||
nodeLinker: node-modules |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,13 @@ | ||
# aurelia-apps | ||
|
||
This project is bootstrapped by [aurelia/new](https://github.com/aurelia/new). | ||
|
||
## Start dev web server | ||
|
||
npm start | ||
|
||
## Build the app in production mode | ||
|
||
npm run build | ||
|
||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,25 @@ | ||
import eslint from "@eslint/js"; | ||
import tseslint from 'typescript-eslint'; | ||
import tsParser from "@typescript-eslint/parser"; | ||
import globals from "globals"; | ||
|
||
export default [ | ||
eslint.configs.recommended, | ||
...tseslint.configs.recommended, | ||
{ | ||
files: ["**/*.ts"], | ||
|
||
languageOptions: { | ||
globals: { | ||
...globals.builtin, | ||
...globals.nodeBuiltin, | ||
...globals.browser, | ||
...globals.node, | ||
}, | ||
|
||
parser: tsParser, | ||
ecmaVersion: 2019, | ||
sourceType: "module", | ||
}, | ||
} | ||
]; |
Binary file not shown.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,17 @@ | ||
<!DOCTYPE html> | ||
<html> | ||
|
||
<head> | ||
<meta charset="utf-8"> | ||
<title>Aurelia</title> | ||
<meta name="viewport" content="width=device-width, initial-scale=1"> | ||
<script type="module" src="/src/main.ts"></script> | ||
<base href="/"> | ||
</head> | ||
|
||
<body> | ||
<my-app></my-app> | ||
</body> | ||
|
||
</html> | ||
|
Oops, something went wrong.