Skip to content

Commit

Permalink
Merge branch 'release/0.2.0'
Browse files Browse the repository at this point in the history
  • Loading branch information
arcticicestudio committed Dec 20, 2019
2 parents 6d341e6 + c79c745 commit 7119afe
Show file tree
Hide file tree
Showing 37 changed files with 315 additions and 22,786 deletions.
17 changes: 7 additions & 10 deletions .circleci/config.yml
Original file line number Diff line number Diff line change
@@ -1,14 +1,11 @@
# ++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++
# title Circle CI Build Configuration +
# project nord-highlightjs +
# repository https://github.com/arcticicestudio/nord-highlightjs +
# author Arctic Ice Studio +
# email [email protected] +
# copyright Copyright (C) 2017 +
# ++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++
# Copyright (C) 2017-present Arctic Ice Studio <[email protected]>
# Copyright (C) 2017-present Sven Greb <[email protected]>
#
# [References]
# Circle CI
# Project: Nord highlight.js
# Repository: https://github.com/arcticicestudio/nord-highlightjs
# License: MIT
#
# References:
# https://circleci.com/docs
version: 2
jobs:
Expand Down
21 changes: 14 additions & 7 deletions .editorconfig
Original file line number Diff line number Diff line change
@@ -1,18 +1,25 @@
# ++++++++++++++++++++++
# Copyright (C) 2017-present Arctic Ice Studio <[email protected]>
# Copyright (C) 2017-present Sven Greb <[email protected]>
#
# Project: Nord highlight.js
# Repository: https://github.com/arcticicestudio/nord-highlightjs
# License: MIT

# +--------------------+
# + Base Configuration +
# ++++++++++++++++++++++
# +--------------------+
[*]
charset = utf-8
end_of_line = lf
indent_size = 2
indent_style = space
insert_final_newline = true
max_line_length = 160
max_line_length = 120
trim_trailing_whitespace = true

# +++++++++++++
# +-----------+
# + Languages +
# +++++++++++++
# +++ Markdown +++
[*.{md,gfm}]
# +-----------+
# +--- Markdown ---+
[*.{md}]
trim_trailing_whitespace = false
23 changes: 15 additions & 8 deletions .gitignore
Original file line number Diff line number Diff line change
@@ -1,15 +1,22 @@
# Copyright (C) 2017-present Arctic Ice Studio <[email protected]>
# Copyright (C) 2017-present Sven Greb <[email protected]>
#
# Project: Nord highlight.js
# Repository: https://github.com/arcticicestudio/nord-highlightjs
# License: MIT

# +------+
# + Logs +
# +------+
logs/
**/*.log
npm-debug.log*

# +---------+
# + Node.js +
# +---------+
node_modules
npm-debug.log
**/node_modules/
.npm/
*.log
# Runtime data
pids
*.pid
*.seed
*.pid.lock

# +-------------------+
# + Project Structure +
Expand Down
7 changes: 7 additions & 0 deletions .npmignore
Original file line number Diff line number Diff line change
@@ -1,3 +1,10 @@
# Copyright (C) 2017-present Arctic Ice Studio <[email protected]>
# Copyright (C) 2017-present Sven Greb <[email protected]>
#
# Project: Nord highlight.js
# Repository: https://github.com/arcticicestudio/nord-highlightjs
# License: MIT

assets/**
src/**
.circleci/**
Expand Down
8 changes: 8 additions & 0 deletions .npmrc
Original file line number Diff line number Diff line change
@@ -1 +1,9 @@
# Copyright (C) 2017-present Arctic Ice Studio <[email protected]>
# Copyright (C) 2017-present Sven Greb <[email protected]>
#
# Project: Nord highlight.js
# Repository: https://github.com/arcticicestudio/nord-highlightjs
# License: MIT

package-lock=true
save-exact=true
48 changes: 23 additions & 25 deletions .stylelintrc.js
Original file line number Diff line number Diff line change
@@ -1,33 +1,31 @@
/*
++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++
title stylelint Configuration +
project nord-highlightjs +
repository https://github.com/arcticicestudio/nord-highlightjs +
author Arctic Ice Studio +
email [email protected] +
copyright Copyright (C) 2017 +
++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++
*/
* Copyright (C) 2017-present Arctic Ice Studio <[email protected]>
* Copyright (C) 2017-present Sven Greb <[email protected]>
*
* Project: Nord highlight.js
* Repository: https://github.com/arcticicestudio/nord-highlightjs
* License: MIT
*/

/**
* Configuration for stylelint.
*
* @see https://stylelint.io
* @see https://stylelint.io/user-guide/rules
* @see https://github.com/stylelint/stylelint-config-standard
*/
* Configuration for stylelint.
*
* @see https://stylelint.io
* @see https://stylelint.io/user-guide/rules
* @see https://github.com/stylelint/stylelint-config-standard
*/
module.exports = {
"extends": "stylelint-config-standard",
"rules": {
extends: "stylelint-config-standard",
rules: {
"color-hex-case": "lower",
"comment-empty-line-before": null,
"selector-pseudo-element-colon-notation": "single",
"at-rule-empty-line-before": [ "always", {
except: [
"blockless-after-same-name-blockless",
"first-nested"
],
ignoreAtRules: ["after-comment", "import"]
}]
"at-rule-empty-line-before": [
"always",
{
except: ["blockless-after-same-name-blockless", "first-nested"],
ignoreAtRules: ["after-comment", "import"]
}
]
}
}
};
19 changes: 8 additions & 11 deletions .travis.yml
Original file line number Diff line number Diff line change
@@ -1,15 +1,12 @@
# ++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++
# title Travis CI Build Configuration +
# project nord-highlightjs +
# repository https://github.com/arcticicestudio/nord-highlightjs +
# author Arctic Ice Studio +
# email [email protected] +
# copyright Copyright (C) 2017 +
# ++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++
#
# [References]
# Travis CI Documentation
# Copyright (C) 2017-present Arctic Ice Studio <[email protected]>
# Copyright (C) 2017-present Sven Greb <[email protected]>

# Project: Nord highlight.js
# Repository: https://github.com/arcticicestudio/nord-highlightjs
# License: MIT
# References:
# https://docs.travis-ci.com/user/languages/javascript-with-nodejs

language: node_js
dist: trusty
sudo: false
Expand Down
Loading

0 comments on commit 7119afe

Please sign in to comment.