Skip to content

Commit d9642f4

Browse files
committed
Migrate to the nordtheme organization (#14)
As part of the "Northern Post - The state and roadmap of Nord" [2] initiative, this repository will be migrated to the `nordtheme` GitHub organization [1]. This included the temporary removal of documentation, since this is outdated by far anyway, and the move to the `nordtheme` organization as a kind of "test subject" in order to ensure that all required metadata and information, e.g. stars and watchers, will be migrated. Note that the documentation will be recreated as part of the data transition [3] later on again, following the new project structure and layout conventions. [1]: https://github.com/nordtheme [2]: nordtheme/nord#180 [3]: nordtheme/web#133 GH-13
1 parent af44196 commit d9642f4

35 files changed

+7844
-470
lines changed

.eslintignore

+16
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,16 @@
1+
# Copyright (c) 2016-present Sven Greb <[email protected]>
2+
# This source code is licensed under the MIT license found in the license file.
3+
4+
# Path match pattern to ignore (i.e. not lint) certain files and folders.
5+
# References:
6+
# 1. https://eslint.org/docs/latest/use/configure/ignore
7+
8+
node_modules/
9+
10+
# Explicitly include specific "dotfiles".
11+
# ESLint automatically applies ignore pattern for "dotfiles" by default to prevent accidentally lint over paths like
12+
# `.git` or any other critical paths.
13+
!**/.eslintrc.js
14+
!.remarkrc.js
15+
!lint-staged.config.js
16+
!prettier.config.js

.eslintrc.js

+24
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,24 @@
1+
/*
2+
* Copyright (c) 2016-present Sven Greb <[email protected]>
3+
* This source code is licensed under the MIT license found in the license file.
4+
*/
5+
6+
/**
7+
* Configurations for ESLint.
8+
* @see https://eslint.org/docs/latest/use/configure
9+
* @see https://eslint.org/docs/latest/use/configure/#using-configuration-files
10+
* @see https://eslint.org/docs/latest/use/configure/#specifying-environments
11+
* @see https://eslint.org/docs/latest/rules
12+
*/
13+
module.exports = {
14+
root: true,
15+
extends: ["@arcticicestudio/eslint-config-base", "@arcticicestudio/eslint-config-base/prettier"],
16+
overrides: [
17+
{
18+
files: ["*.js"],
19+
rules: {
20+
"capitalized-comments": "off",
21+
},
22+
},
23+
],
24+
};

.gitattributes

+18
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,18 @@
1+
# Copyright (c) 2016-present Sven Greb <[email protected]>
2+
# This source code is licensed under the MIT license found in the license file.
3+
4+
# Configuration to define attributes per path.
5+
#
6+
# References:
7+
# 1. https://git-scm.com/docs/gitattributes
8+
# 2. https://git-scm.com/book/en/v2/Customizing-Git-Git-Attributes#Keyword-Expansion
9+
10+
# Automatically perform line feed (LF) normalization for files detected as text and
11+
# leave all files detected as binary untouched.
12+
* text=auto eol=lf
13+
14+
# +--------+
15+
# + Assets +
16+
# +--------+
17+
*.ai binary
18+
*.png binary

.github/codeowners

+14
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,14 @@
1+
# Copyright (c) 2016-present Sven Greb <[email protected]>
2+
# This source code is licensed under the MIT license found in the license file.
3+
4+
# Configuration for the GitHub feature to automatically request reviews from the code owners
5+
# when a pull request changes any owned files.
6+
#
7+
# References:
8+
# 1. https://docs.github.com/en/repositories/managing-your-repositorys-settings-and-features/customizing-your-repository/about-code-owners#codeowners-file-location
9+
# 2. https://github.com/blog/2392-introducing-code-owners
10+
11+
# +----------------------+
12+
# + Core Team Code Owner +
13+
# +----------------------+
14+
* @svengreb

.gitignore

+21-23
Original file line numberDiff line numberDiff line change
@@ -1,27 +1,25 @@
1-
# +--------------+
2-
# + Apache Maven +
3-
# +--------------+
4-
/target/
1+
# Copyright (c) 2016-present Sven Greb <[email protected]>
2+
# This source code is licensed under the MIT license found in the license file.
53

6-
# +---------------+
7-
# + IntelliJ IDEA +
8-
# +---------------+
9-
# https://intellij-support.jetbrains.com/hc/en-us/articles/206544839
10-
out/
11-
.idea/*
4+
# Path match pattern to intentionally ignore untracked files and directories.
5+
# See https://git-scm.com/docs/gitignore for more details.
6+
7+
# +--------------------+
8+
# + JetBrains Products +
9+
# +--------------------+
10+
# +--- IntelliJ IDEA ---+
11+
.idea/
1212
!.idea/runConfigurations
13-
!.idea/compiler.xml
14-
!.idea/encodings.xml
15-
!.idea/misc.xml
16-
!.idea/modules.xml
17-
!.idea/vcs.xml
13+
!.idea/saved-exports
14+
!.idea/watcherTasks.xml
15+
out/
1816

19-
# +------+
20-
# + Java +
21-
# +------+
22-
*.class
23-
*.jar
17+
# +---------+
18+
# + Node.js +
19+
# +---------+
20+
node_modules/
2421

25-
# JVM crash logs
26-
# http://www.java.com/en/download/help/error_hotspot.xml
27-
hs_err_pid*
22+
# +---------+
23+
# + Project +
24+
# +---------+
25+
target/

.husky/pre-commit

+8
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,8 @@
1+
#!/bin/sh
2+
3+
# Copyright (c) 2016-present Sven Greb <[email protected]>
4+
# This source code is licensed under the MIT license found in the license file.
5+
6+
. "$(dirname "$0")/_/husky.sh"
7+
8+
npm exec lint-staged

.idea/compiler.xml

-33
This file was deleted.

.idea/encodings.xml

-7
This file was deleted.

.idea/misc.xml

-38
This file was deleted.

.idea/modules.xml

-8
This file was deleted.

.idea/vcs.xml

-6
This file was deleted.

.mailmap

+8
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,8 @@
1+
# Copyright (c) 2016-present Sven Greb <[email protected]>
2+
# This source code is licensed under the MIT license found in the license file.
3+
4+
# Configuration for the Git mail mapping feature to coalesce together commits by the same person in the shortlog,
5+
# where their name and/or email address was spelled differently or has been changed.
6+
# See https://git-scm.com/docs/git-shortlog#_mapping_authors for more details.
7+
Sven Greb <[email protected]>
8+

.npmrc

+18
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,18 @@
1+
# Copyright (c) 2016-present Sven Greb <[email protected]>
2+
# This source code is licensed under the MIT license found in the license file.
3+
4+
# Configurations for npm.
5+
# See https://docs.npmjs.com/cli/v7/configuring-npm/npmrc for more details.
6+
7+
# Only use a lockfile for single-consumer projects, like applications, but not for multi-consumer projects like
8+
# libraries.
9+
# It helps to pin dependency versions, improves the security through integrity checksums, prevents possible errors
10+
# caused by updated transitive dependencies and allows to get deterministic build results, but it can hide problems in
11+
# multi-consumer projects when any later versions of a used dependency, or its transitive dependencies, is not
12+
# compatible with the own project anymore.
13+
package-lock=true
14+
15+
# Do not resolve to the latest minor and patch updates.
16+
# Automatically pin dependencies to exact versions instead of resolving to latest minor and patch updates.
17+
# This prevents possible errors caused by updated transitive dependencies.
18+
save-exact=true

.prettierignore

+10
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,10 @@
1+
# Copyright (c) 2016-present Sven Greb <[email protected]>
2+
# This source code is licensed under the MIT license found in the license file.
3+
4+
# Path match pattern to ignore (i.e. not reformat) certain files and folders.
5+
# See https://prettier.io/docs/en/ignore for more details.
6+
7+
**/*.ai
8+
**/*.png
9+
.husky/_/
10+
node_modules/

.remarkignore

+7
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,7 @@
1+
# Copyright (c) 2016-present Sven Greb <[email protected]>
2+
# This source code is licensed under the MIT license found in the license file.
3+
4+
# Path match pattern to ignore when searching for files.
5+
# See https://github.com/unifiedjs/unified-engine/blob/HEAD/doc/ignore.md for more details.
6+
7+
node_modules/

.remarkrc.js

+13
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,13 @@
1+
/*
2+
* Copyright (c) 2016-present Sven Greb <[email protected]>
3+
* This source code is licensed under the MIT license found in the license file.
4+
*/
5+
6+
/**
7+
* Configurations for remark-lint.
8+
* @see https://github.com/remarkjs/remark-lint
9+
* @see https://remark.js.org
10+
*/
11+
module.exports = {
12+
plugins: ["@arcticicestudio/remark-preset-lint"],
13+
};

.travis.yml

-19
This file was deleted.

CHANGELOG.md

-52
This file was deleted.

0 commit comments

Comments
 (0)