-
Notifications
You must be signed in to change notification settings - Fork 8
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
45 changed files
with
9,861 additions
and
1,764 deletions.
There are no files selected for viewing
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,4 @@ | ||
dist | ||
node_modules | ||
.output | ||
.nuxt |
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,8 @@ | ||
module.exports = { | ||
root: true, | ||
extends: '@nuxt/eslint-config', | ||
rules: { | ||
'vue/max-attributes-per-line': 'off', | ||
'vue/multi-word-component-names': 'off' | ||
} | ||
} |
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 @@ | ||
node_modules | ||
*.iml | ||
.idea | ||
*.log* | ||
.nuxt | ||
.vscode | ||
.DS_Store | ||
coverage | ||
dist | ||
sw.* | ||
.env | ||
.output | ||
.eslintcache |
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,18 @@ | ||
# Default state for all rules | ||
default: true | ||
# Disable max line length | ||
MD013: false | ||
# Disable space after hash on atx style heading | ||
MD018: false | ||
# Allow duplicated heading for different sections | ||
MD024: | ||
allow_different_nesting: true | ||
siblings_only: true | ||
# Allow multiple top-level headings | ||
MD025: false | ||
# Allow inline HTML | ||
MD033: false | ||
# Allow non blank lines around list | ||
MD032: false | ||
MD046: | ||
style: fenced |
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 @@ | ||
**/node_modules | ||
|
||
content/0.index.md |
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 @@ | ||
shamefully-hoist=true | ||
strict-peer-dependencies=false |
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,29 @@ | ||
# ArmoniK.Extensions.Csharp Docs | ||
|
||
Docs for ArmoniK.Extensions.Csharp | ||
|
||
## Installation | ||
|
||
> Be aware to be in the .docs folder | ||
```bash | ||
pnpm install | ||
``` | ||
|
||
> If you don't have pnpm installed, you can install it with the following command: `npm install -g pnpm` | ||
## Usage | ||
|
||
To run the docs locally, run the following command: | ||
|
||
```bash | ||
pnpm run dev | ||
``` | ||
|
||
To build the docs, run the following command: | ||
|
||
```bash | ||
pnpm run generate | ||
``` | ||
|
||
For more information, check out the [armonik-docs-theme documentation](https://aneoconsulting.github.io/armonik-docs-theme). |
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,15 @@ | ||
export default defineAppConfig({ | ||
docus: { | ||
title: "ArmoniK.Extensions.Csharp", | ||
description: "An extension library for C# to use ArmoniK", | ||
titleTemplate: "%s - ArmoniK.Extensions.Csharp", | ||
socials: { | ||
github: 'aneoconsulting/ArmoniK.Extensions.Csharp', | ||
}, | ||
github: { | ||
dir: '.docs/content', | ||
repo: 'ArmoniK.Extensions.Csharp', | ||
owner: 'aneoconsulting', | ||
}, | ||
} | ||
}) |
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,22 @@ | ||
--- | ||
navigation: false | ||
layout: page | ||
main.fluid: false | ||
--- | ||
|
||
::block-hero | ||
--- | ||
cta: | ||
- Get Started | ||
- /buffersubmit | ||
secondary: | ||
- Open on GitHub → | ||
- https://github.com/aneoconsulting/ArmoniK.Extensions.Csharp | ||
--- | ||
|
||
#title | ||
Extensions Csharp | ||
|
||
#description | ||
An extension library for C# to use ArmoniK | ||
:: |
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
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 @@ | ||
const baseURL = process.env.NODE_ENV === 'production' ? '/ArmoniK.Extensions.Csharp/' : '/' | ||
|
||
export default defineNuxtConfig({ | ||
extends: '@aneoconsultingfr/armonik-docs-theme', | ||
|
||
app: { | ||
baseURL: baseURL, | ||
head: { | ||
link: [ | ||
{ | ||
rel: 'icon', | ||
type: 'image/ico', | ||
href: `${baseURL}favicon.ico`, | ||
} | ||
] | ||
} | ||
}, | ||
|
||
runtimeConfig: { | ||
public: { | ||
siteName: 'ArmoniK.Extensions.Csharp', | ||
siteDescription: 'An extension library for C# to use ArmoniK', | ||
} | ||
}, | ||
}) |
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,26 @@ | ||
{ | ||
"name": "armonik-extensions-csharp", | ||
"private": true, | ||
"scripts": { | ||
"prepare": "nuxi prepare", | ||
"dev": "nuxi dev", | ||
"build": "nuxi build", | ||
"generate": "nuxi generate", | ||
"preview": "nuxi preview", | ||
"lint": "eslint --cache .", | ||
"lint:fix": "eslint --cache --fix .", | ||
"lint:md": "markdownlint . && case-police ./**/*.md", | ||
"lint:md:fix": "markdownlint . --fix && case-police --fix ./**/*.md" | ||
}, | ||
"dependencies": { | ||
"@aneoconsultingfr/armonik-docs-theme": "^0.6.9", | ||
"nuxt": "^3.4.3" | ||
}, | ||
"devDependencies": { | ||
"@nuxt/eslint-config": "^0.1.1", | ||
"case-police": "^0.6.1", | ||
"eslint": "^8.40.0", | ||
"markdownlint-cli": "^0.34.0" | ||
}, | ||
"packageManager": "[email protected]" | ||
} |
Oops, something went wrong.