-
-
Notifications
You must be signed in to change notification settings - Fork 9
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
…#64) With the retirement of the "Arctic Ice Studio" personal & Nord project brand [1] this project also moved to the "real-in-person" identity "Sven Greb" both in the context of the repository to the `svengreb` GitHub account [2] and the `@svengreb` npm package scope. During this migration the currently only npm package `@arcticicestudio/remark-preset-lint` [3] has been deprecated in favor of the new and upcoming `@svengreb/remark-preset-lint` [3] package that has been published afterwards. Also the visual representation of this style guide that was published before [6] through the way too outdated and deprecated GitBook [5] major version `2` has now been unpublished and removed. The documentations and references are updated to use the GitHub repository with the Markdown rendering instead for now until a custom website has been implemented using a modern "TechStack" like [Next.js][7]. A simple HTTP redirection page has been published through the `gh-pages` Git branch that redirects to `https://github.com/svengreb/styleguide-markdown` to catch possible users and make them aware of the migration. [1]: https://github.com/orgs/nordtheme/discussions/183#retire-arctic-ice-studio-as-nord-brand [2]: https://github.com/svengreb [3]: https://www.npmjs.com/package/@arcticicestudio/remark-preset-lint [4]: https://www.npmjs.com/package/@svengreb/remark-preset-lint [5]: https://www.gitbook.com [6]: https://arcticicestudio.github.io/styleguide-markdown [7]: https://nextjs.org GH-63
- Loading branch information
Showing
84 changed files
with
10,266 additions
and
29,035 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 |
---|---|---|
@@ -1,6 +1,5 @@ | ||
# Copyright (c) 2018-present Arctic Ice Studio <[email protected]> | ||
# Copyright (c) 2018-present Sven Greb <[email protected]> | ||
# This source code is licensed under the MIT license found in the LICENSE file. | ||
# Copyright (c) 2016-present Sven Greb <[email protected]> | ||
# This source code is licensed under the MIT license found in the license file. | ||
|
||
# Configurations for EditorConfig. | ||
# See https://editorconfig.org/#file-format-details for more details. | ||
|
@@ -16,7 +15,7 @@ end_of_line = lf | |
indent_size = 2 | ||
indent_style = space | ||
insert_final_newline = true | ||
max_line_length = 120 | ||
max_line_length = 160 | ||
trim_trailing_whitespace = 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 |
---|---|---|
@@ -1,11 +1,14 @@ | ||
# Copyright (c) 2018-present Arctic Ice Studio <[email protected]> | ||
# Copyright (c) 2018-present Sven Greb <[email protected]> | ||
# This source code is licensed under the MIT license found in the LICENSE file. | ||
# Copyright (c) 2016-present Sven Greb <[email protected]> | ||
# This source code is licensed under the MIT license found in the license file. | ||
|
||
# Path match pattern to ignore specific files and directories. | ||
# See https://eslint.org/docs/user-guide/configuring/ignoring-code for more details. | ||
# Path match pattern to ignore (i.e. not lint) certain files and folders. | ||
# References: | ||
# 1. https://eslint.org/docs/latest/use/configure/ignore | ||
|
||
build/* | ||
**/node_modules/* | ||
!.eslintrc.js | ||
node_modules/ | ||
|
||
# Explicitly include specific "dotfiles". | ||
# ESLint automatically applies ignore pattern for "dotfiles" by default to prevent accidentally lint over paths like | ||
# `.git` or any other critical paths. | ||
!**/.eslintrc.js | ||
!.remarkrc.js |
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,22 +1,32 @@ | ||
/* | ||
* Copyright (c) 2018-present Arctic Ice Studio <[email protected]> | ||
* Copyright (c) 2018-present Sven Greb <[email protected]> | ||
* This source code is licensed under the MIT license found in the LICENSE file. | ||
* Copyright (c) 2016-present Sven Greb <[email protected]> | ||
* This source code is licensed under the MIT license found in the license file. | ||
*/ | ||
|
||
/** | ||
* Configurations for ESLint. | ||
* | ||
* @see https://eslint.org/docs/user-guide/configuring | ||
* @see https://eslint.org/docs/latest/use/configure | ||
* @see https://eslint.org/docs/latest/use/configure/#using-configuration-files | ||
* @see https://eslint.org/docs/latest/use/configure/#specifying-environments | ||
* @see https://eslint.org/docs/latest/rules | ||
*/ | ||
module.exports = { | ||
root: true, | ||
extends: [ | ||
"@arcticicestudio/eslint-config-base", | ||
/* | ||
* Enable support for projects using Prettier. | ||
* Note that this must always be placed after the `@arcticicestudio/eslint-config-base` preset to take precedence, | ||
* otherwise it won't prevent errors due to useless and possibly conflicting rules! | ||
* Note that this must always be placed after the `@arcticicestudio/eslint-config-base` preset to take precedence, otherwise it won't prevent errors | ||
* due to useless and possibly conflicting rules! | ||
*/ | ||
"@arcticicestudio/eslint-config-base/prettier", | ||
], | ||
overrides: [ | ||
{ | ||
files: ["*.js"], | ||
rules: { | ||
"capitalized-comments": "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 |
---|---|---|
@@ -1,19 +1,11 @@ | ||
# Copyright (c) 2018-present Arctic Ice Studio <[email protected]> | ||
# Copyright (c) 2018-present Sven Greb <[email protected]> | ||
# This source code is licensed under the MIT license found in the LICENSE file. | ||
# Copyright (c) 2016-present Sven Greb <[email protected]> | ||
# This source code is licensed under the MIT license found in the license file. | ||
|
||
# Configuration to define attributes per path. | ||
# | ||
# References: | ||
# 1. https://git-scm.com/docs/gitattributes | ||
# 2. https://git-scm.com/book/en/v2/Customizing-Git-Git-Attributes#Keyword-Expansion | ||
|
||
# Automatically perform line feed (LF) normalization for files detected as text and | ||
# leave all files detected as binary untouched. | ||
* text=auto eol=lf | ||
|
||
# +--------+ | ||
# + Assets + | ||
# +--------+ | ||
*.ai binary | ||
*.png binary |
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,15 +1,14 @@ | ||
# Copyright (c) 2018-present Arctic Ice Studio <[email protected]> | ||
# Copyright (c) 2018-present Sven Greb <[email protected]> | ||
# This source code is licensed under the MIT license found in the LICENSE file. | ||
# Copyright (c) 2016-present Sven Greb <[email protected]> | ||
# This source code is licensed under the MIT license found in the license file. | ||
|
||
# Configuration for the GitHub feature to automatically request reviews from the code owners when a pull request | ||
# changes any owned files. | ||
# Configuration for the GitHub feature to automatically request reviews from the code owners | ||
# when a pull request changes any owned files. | ||
# | ||
# References: | ||
# 1. https://docs.github.com/en/github/creating-cloning-and-archiving-repositories/about-code-owners | ||
# 1. https://docs.github.com/en/repositories/managing-your-repositorys-settings-and-features/customizing-your-repository/about-code-owners#codeowners-file-location | ||
# 2. https://github.com/blog/2392-introducing-code-owners | ||
|
||
# +--------------------+ | ||
# + Default Code Owner + | ||
# +--------------------+ | ||
* @arcticicestudio @svengreb | ||
# +----------------------+ | ||
# + Core Team Code Owner + | ||
# +----------------------+ | ||
* @svengreb |
This file was deleted.
Oops, something went wrong.
This file was deleted.
Oops, something went wrong.
This file was deleted.
Oops, something went wrong.
This file was deleted.
Oops, something went wrong.
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,8 +1,10 @@ | ||
# Copyright (c) 2018-present Sven Greb <[email protected]> | ||
# Copyright (c) 2016-present Sven Greb <[email protected]> | ||
# This source code is licensed under the MIT license found in the LICENSE file. | ||
|
||
# GitHub Action Workflow for continuous integration jobs. | ||
# See https://docs.github.com/en/actions and https://github.com/features/actions for more details. | ||
# References: | ||
# 1. https://docs.github.com/en/actions | ||
# 2. https://github.com/features/actions | ||
|
||
name: ci-node | ||
on: | ||
|
@@ -12,7 +14,6 @@ on: | |
- "**.json" | ||
- "**.md" | ||
- "**.yaml" | ||
- "**.yml" | ||
branches: | ||
- main | ||
tags: | ||
|
@@ -23,7 +24,6 @@ on: | |
- "**.json" | ||
- "**.md" | ||
- "**.yaml" | ||
- "**.yml" | ||
|
||
jobs: | ||
lint: | ||
|
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,16 +1,10 @@ | ||
# Copyright (c) 2018-present Arctic Ice Studio <[email protected]> | ||
# Copyright (c) 2018-present Sven Greb <[email protected]> | ||
# This source code is licensed under the MIT license found in the LICENSE file. | ||
# Copyright (c) 2016-present Sven Greb <[email protected]> | ||
# This source code is licensed under the MIT license found in the license file. | ||
|
||
# Path match pattern to intentionally ignore untracked files and directories. | ||
# See https://git-scm.com/docs/gitignore for more details. | ||
|
||
# +---------+ | ||
# + Node.js + | ||
# +---------+ | ||
**/node_modules/ | ||
|
||
# +-------------------+ | ||
# + Project Structure + | ||
# +-------------------+ | ||
build/ | ||
node_modules/ |
This file was deleted.
Oops, something went wrong.
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,11 +1,9 @@ | ||
#!/bin/sh | ||
|
||
# Copyright (c) 2018-present Arctic Ice Studio <[email protected]> | ||
# Copyright (c) 2018-present Sven Greb <[email protected]> | ||
# This source code is licensed under the MIT license found in the LICENSE file. | ||
# Copyright (c) 2016-present Sven Greb <[email protected]> | ||
# This source code is licensed under the MIT license found in the license file. | ||
|
||
# Git "pre-commit" hook for husky. | ||
# | ||
# References: | ||
# 1. https://github.com/typicode/husky | ||
# 2. https://git-scm.com/docs/githooks#_pre_commit | ||
|
Oops, something went wrong.