-
-
Notifications
You must be signed in to change notification settings - Fork 94
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
18 changed files
with
10,573 additions
and
4,484 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
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 |
---|---|---|
|
@@ -8,24 +8,20 @@ | |
*/ | ||
|
||
/** | ||
* @file The ESLint configuration. | ||
* @author Arctic Ice Studio <[email protected]> | ||
* @author Sven Greb <[email protected]> | ||
* @see https://github.com/babel/eslint-plugin-babel#rules | ||
* @see https://github.com/tc39/proposal-optional-chaining | ||
* @see https://eslint.org/docs/user-guide/configuring#specifying-environments | ||
* Configurations for ESLint. | ||
* | ||
* @see https://eslint.org/docs/user-guide/configuring | ||
*/ | ||
|
||
module.exports = { | ||
extends: "arcticicestudio-base", | ||
plugins: ["json", "prettier"], | ||
parser: "babel-eslint", | ||
env: { | ||
node: true, | ||
browser: true | ||
}, | ||
rules: { | ||
/* Prioritize format errors found by Prettier. */ | ||
"prettier/prettier": "error" | ||
} | ||
extends: [ | ||
"plugin:jsonc/recommended-with-jsonc", | ||
"@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! | ||
*/ | ||
"@arcticicestudio/eslint-config-base/prettier", | ||
], | ||
plugins: ["jsonc"], | ||
}; |
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 |
---|---|---|
@@ -0,0 +1 @@ | ||
_ |
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 @@ | ||
#!/bin/sh | ||
|
||
# Copyright (C) 2017-present Arctic Ice Studio <[email protected]> | ||
# Copyright (C) 2017-present Sven Greb <[email protected]> | ||
# | ||
# Project: Nord Visual Studio Code | ||
# Repository: https://github.com/arcticicestudio/nord-visual-studio-code | ||
# License: MIT | ||
|
||
# Git "pre-commit" hook for husky. | ||
# | ||
# References: | ||
# 1. https://github.com/typicode/husky | ||
# 2. https://git-scm.com/docs/githooks#_pre_commit | ||
|
||
. "$(dirname "$0")/_/husky.sh" | ||
|
||
npm exec lint-staged |
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 |
---|---|---|
|
@@ -6,4 +6,4 @@ | |
# License: MIT | ||
|
||
package-lock=true | ||
save-exact=true | ||
save-exact=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 |
---|---|---|
|
@@ -6,6 +6,5 @@ | |
# License: MIT | ||
|
||
assets/* | ||
**/node_modules/* | ||
package-lock.json | ||
node_modules/* | ||
*.vsix |
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 |
---|---|---|
|
@@ -8,11 +8,10 @@ | |
*/ | ||
|
||
/** | ||
* @file The remark-lint configuration. | ||
* @author Arctic Ice Studio <[email protected]> | ||
* @author Sven Greb <[email protected]> | ||
* Configurations for remark-lint. | ||
* | ||
* @see https://github.com/remarkjs/remark-lint | ||
*/ | ||
|
||
module.exports = { | ||
plugins: ["remark-preset-lint-arcticicestudio"] | ||
plugins: ["@arcticicestudio/remark-preset-lint"], | ||
}; |
Large diffs are not rendered by default.
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
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
Oops, something went wrong.