-
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.
More
nordtheme
organization migration adapations
To align with the latest Nord project standards more changes have been made for as part of the `nordtheme` organization migration. nordtheme/nord#185
- Loading branch information
Showing
10 changed files
with
1,571 additions
and
135 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 |
---|---|---|
@@ -0,0 +1,14 @@ | ||
# Copyright (c) 2016-present Sven Greb <development@svengreb.de> | ||
# This source code is licensed under the MIT license found in the license file. | ||
|
||
# Path match pattern to ignore (i.e. not lint) certain files and folders. | ||
# References: | ||
# 1. https://eslint.org/docs/latest/use/configure/ignore | ||
|
||
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 |
---|---|---|
@@ -0,0 +1,24 @@ | ||
/* | ||
* Copyright (c) 2016-present Sven Greb <development@svengreb.de> | ||
* This source code is licensed under the MIT license found in the license file. | ||
*/ | ||
|
||
/** | ||
* Configurations for ESLint. | ||
* @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", "@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 |
---|---|---|
|
@@ -7,4 +7,4 @@ | |
# +---------+ | ||
# + Node.js + | ||
# +---------+ | ||
**/node_modules/ | ||
node_modules/ |
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
Oops, something went wrong.