Skip to content

Commit f3830c3

Browse files
authored
nordtheme organization migration (#242)
As part of the "Northern Post - The state and roadmap of Nord" [1] announcement, this repository will be migrated to the `nordtheme` GitHub organization [2]. This issue is a task of the nordtheme/nord#185 [3] epic (tasklist [4]). [1]: https://github.com/orgs/nordtheme/discussions/183 [2]: https://github.com/nordtheme [3]: nordtheme/nord#185 [4]: https://docs.github.com/en/get-started/writing-qon-github/working-with-advanced-formatting/about-task-lists GH-241
1 parent 4805e1e commit f3830c3

File tree

1,039 files changed

+33702
-31466
lines changed

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

1,039 files changed

+33702
-31466
lines changed

.circleci/config.yml

-195
This file was deleted.

.codecov.yml

-19
This file was deleted.

.editorconfig

+14-9
Original file line numberDiff line numberDiff line change
@@ -1,25 +1,30 @@
1-
# Copyright (C) 2018-present Arctic Ice Studio <[email protected]>
2-
# Copyright (C) 2018-present Sven Greb <[email protected]>
3-
#
4-
# Project: Nord Docs
5-
# Repository: https://github.com/arcticicestudio/nord-docs
6-
# License: MIT
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 EditorConfig.
5+
# See https://editorconfig.org/#file-format-details for more details.
76

87
# +--------------------+
98
# + Base Configuration +
109
# +--------------------+
10+
root = true
11+
1112
[*]
1213
charset = utf-8
1314
end_of_line = lf
1415
indent_size = 2
1516
indent_style = space
1617
insert_final_newline = true
17-
max_line_length = 120
18+
max_line_length = 160
1819
trim_trailing_whitespace = true
1920

2021
# +-----------+
2122
# + Languages +
2223
# +-----------+
23-
# +--- Markdown/MDX ---+
24-
[*.{md,mdx}]
24+
# +--- Markdown ---+
25+
[*.{md}]
26+
max_line_length = off
2527
trim_trailing_whitespace = false
28+
# +--- MDX ---+
29+
[*.{mdx}]
30+
max_line_length = off

.eslintignore

+2-6
Original file line numberDiff line numberDiff line change
@@ -1,9 +1,5 @@
1-
# Copyright (C) 2018-present Arctic Ice Studio <[email protected]>
2-
# Copyright (C) 2018-present Sven Greb <[email protected]>
3-
#
4-
# Project: Nord Docs
5-
# Repository: https://github.com/arcticicestudio/nord-docs
6-
# License: MIT
1+
# Copyright (c) 2016-present Sven Greb <[email protected]>
2+
# This source code is licensed under the MIT license found in the license file.
73

84
.cache/*
95
build/*

.eslintrc.js

+24-32
Original file line numberDiff line numberDiff line change
@@ -1,35 +1,27 @@
11
/*
2-
* Copyright (C) 2018-present Arctic Ice Studio <[email protected]>
3-
* Copyright (C) 2018-present Sven Greb <[email protected]>
4-
*
5-
* Project: Nord Docs
6-
* Repository: https://github.com/arcticicestudio/nord-docs
7-
* License: MIT
2+
* Copyright (c) 2016-present Sven Greb <[email protected]>
3+
* This source code is licensed under the MIT license found in the license file.
84
*/
95

6+
const { resolve } = require("path");
7+
108
/**
11-
* @file The ESLint configuration.
12-
* @author Arctic Ice Studio <[email protected]>
13-
* @author Sven Greb <[email protected]>
9+
* Configurations for ESLint.
10+
* @see https://eslint.org/docs/latest/use/configure
11+
* @see https://eslint.org/docs/latest/use/configure/#using-configuration-files
12+
* @see https://eslint.org/docs/latest/use/configure/#specifying-environments
13+
* @see https://eslint.org/docs/latest/rules
1414
* @see https://github.com/babel/eslint-plugin-babel#rules
1515
* @see https://github.com/tc39/proposal-optional-chaining
16-
* @see https://eslint.org/docs/user-guide/configuring#specifying-environments
1716
*/
18-
19-
const { resolve } = require("path");
20-
2117
module.exports = {
2218
parser: "babel-eslint",
23-
extends: [
24-
"@arcticicestudio/eslint-config",
25-
"@arcticicestudio/eslint-config/react-hooks",
26-
"@arcticicestudio/eslint-config/prettier"
27-
],
19+
extends: ["@arcticicestudio/eslint-config", "@arcticicestudio/eslint-config/react-hooks", "@arcticicestudio/eslint-config/prettier"],
2820
plugins: ["babel"],
2921
env: {
3022
browser: true,
3123
jest: true,
32-
node: true
24+
node: true,
3325
},
3426
settings: {
3527
"import/resolver": {
@@ -47,17 +39,17 @@ module.exports = {
4739
["pages", resolve(__dirname, "src", "pages")],
4840
["styles", resolve(__dirname, "src", "styles")],
4941
["templates", resolve(__dirname, "src", "components", "templates")],
50-
["utils", resolve(__dirname, "src", "utils")]
51-
]
42+
["utils", resolve(__dirname, "src", "utils")],
43+
],
5244
},
5345
jest: {
54-
jestConfigFile: resolve(__dirname, "jest.config.js")
46+
jestConfigFile: resolve(__dirname, "jest.config.js"),
5547
},
5648
node: {
5749
/* Resolve Webpack alias imports */
58-
paths: [resolve(__dirname, "src"), resolve(__dirname, "src", "components")]
59-
}
60-
}
50+
paths: [resolve(__dirname, "src"), resolve(__dirname, "src", "components")],
51+
},
52+
},
6153
},
6254
rules: {
6355
/*
@@ -69,7 +61,7 @@ module.exports = {
6961
camelcase: "off",
7062
"babel/camelcase": "error",
7163
"no-unused-expressions": "off",
72-
"babel/no-unused-expressions": "error"
64+
"babel/no-unused-expressions": "error",
7365
},
7466
overrides: [
7567
{
@@ -84,8 +76,8 @@ module.exports = {
8476
* Spreading props reduces prop cluttering and can prevent bugs due to transitive/implicit props not being
8577
* passed to the target component
8678
*/
87-
"react/jsx-props-no-spreading": "off"
88-
}
79+
"react/jsx-props-no-spreading": "off",
80+
},
8981
},
9082
{
9183
/*
@@ -94,8 +86,8 @@ module.exports = {
9486
*/
9587
files: ["**/.gatsby/**/*.js"],
9688
rules: {
97-
"import/no-extraneous-dependencies": "off"
98-
}
99-
}
100-
]
89+
"import/no-extraneous-dependencies": "off",
90+
},
91+
},
92+
],
10193
};

.gatsby/.env.development

-123 Bytes
Binary file not shown.

.gatsby/.env.production

-147 Bytes
Binary file not shown.

0 commit comments

Comments
 (0)