forked from aneoconsulting/ArmoniK.Community
-
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
1 parent
2df21ee
commit e01a48d
Showing
13 changed files
with
260 additions
and
49 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
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 |
---|---|---|
|
@@ -10,3 +10,4 @@ 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 |
---|---|---|
@@ -1,4 +1,4 @@ | ||
# ArmoniK Community | ||
# ArmoniK Community | ||
|
||
All our ways of working and our good practices. | ||
|
||
|
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
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 |
---|---|---|
@@ -1,6 +1,6 @@ | ||
# Discuss First ! | ||
# Discuss First | ||
|
||
Create a new issue and talk to us about it before attempting to create a feature pull request. | ||
It will help maintainers in comprehending your requirements and ensuring that you take steps that are appropriate for ArmoniK's future. | ||
It will help maintainers in comprehending your requirements and ensuring that you take steps that are appropriate for ArmoniK's future. | ||
|
||
If you have an idea or want to discuss an issue with the community, you can alternatively create a discussion in our [Discussions Channel](https://github.com/aneoconsulting/ArmoniK/discussions). | ||
If you have an idea or want to discuss an issue with the community, you can alternatively create a discussion in our [Discussions Channel](https://github.com/aneoconsulting/ArmoniK/discussions). |
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
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 |
---|---|---|
@@ -1,13 +1,17 @@ | ||
{ | ||
"name": "armonik-community", | ||
"version": "0.1.0", | ||
"private": true, | ||
"scripts": { | ||
"prepare": "nuxt prepare", | ||
"postinstall": "nuxi prepare", | ||
"dev": "nuxi dev", | ||
"build": "nuxi build", | ||
"generate": "nuxi generate", | ||
"preview": "nuxi preview", | ||
"lint": "eslint ." | ||
"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.0", | ||
|
@@ -16,5 +20,9 @@ | |
"nuxt": "^3.3.1", | ||
"rollup": "3.18.0" | ||
}, | ||
"packageManager": "[email protected]" | ||
"packageManager": "[email protected]", | ||
"devDependencies": { | ||
"case-police": "^0.6.0", | ||
"markdownlint-cli": "^0.34.0" | ||
} | ||
} |
Oops, something went wrong.