Skip to content

Commit 7119afe

Browse files
Merge branch 'release/0.2.0'
2 parents 6d341e6 + c79c745 commit 7119afe

37 files changed

+315
-22786
lines changed

.circleci/config.yml

Lines changed: 7 additions & 10 deletions
Original file line numberDiff line numberDiff line change
@@ -1,14 +1,11 @@
1-
# ++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++
2-
# title Circle CI Build Configuration +
3-
# project nord-highlightjs +
4-
# repository https://github.com/arcticicestudio/nord-highlightjs +
5-
# author Arctic Ice Studio +
6-
7-
# copyright Copyright (C) 2017 +
8-
# ++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++
1+
# Copyright (C) 2017-present Arctic Ice Studio <[email protected]>
2+
# Copyright (C) 2017-present Sven Greb <[email protected]>
93
#
10-
# [References]
11-
# Circle CI
4+
# Project: Nord highlight.js
5+
# Repository: https://github.com/arcticicestudio/nord-highlightjs
6+
# License: MIT
7+
#
8+
# References:
129
# https://circleci.com/docs
1310
version: 2
1411
jobs:

.editorconfig

Lines changed: 14 additions & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -1,18 +1,25 @@
1-
# ++++++++++++++++++++++
1+
# Copyright (C) 2017-present Arctic Ice Studio <[email protected]>
2+
# Copyright (C) 2017-present Sven Greb <[email protected]>
3+
#
4+
# Project: Nord highlight.js
5+
# Repository: https://github.com/arcticicestudio/nord-highlightjs
6+
# License: MIT
7+
8+
# +--------------------+
29
# + Base Configuration +
3-
# ++++++++++++++++++++++
10+
# +--------------------+
411
[*]
512
charset = utf-8
613
end_of_line = lf
714
indent_size = 2
815
indent_style = space
916
insert_final_newline = true
10-
max_line_length = 160
17+
max_line_length = 120
1118
trim_trailing_whitespace = true
1219

13-
# +++++++++++++
20+
# +-----------+
1421
# + Languages +
15-
# +++++++++++++
16-
# +++ Markdown +++
17-
[*.{md,gfm}]
22+
# +-----------+
23+
# +--- Markdown ---+
24+
[*.{md}]
1825
trim_trailing_whitespace = false

.gitignore

Lines changed: 15 additions & 8 deletions
Original file line numberDiff line numberDiff line change
@@ -1,15 +1,22 @@
1+
# Copyright (C) 2017-present Arctic Ice Studio <[email protected]>
2+
# Copyright (C) 2017-present Sven Greb <[email protected]>
3+
#
4+
# Project: Nord highlight.js
5+
# Repository: https://github.com/arcticicestudio/nord-highlightjs
6+
# License: MIT
7+
8+
# +------+
9+
# + Logs +
10+
# +------+
11+
logs/
12+
**/*.log
13+
npm-debug.log*
14+
115
# +---------+
216
# + Node.js +
317
# +---------+
4-
node_modules
5-
npm-debug.log
18+
**/node_modules/
619
.npm/
7-
*.log
8-
# Runtime data
9-
pids
10-
*.pid
11-
*.seed
12-
*.pid.lock
1320

1421
# +-------------------+
1522
# + Project Structure +

.npmignore

Lines changed: 7 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,10 @@
1+
# Copyright (C) 2017-present Arctic Ice Studio <[email protected]>
2+
# Copyright (C) 2017-present Sven Greb <[email protected]>
3+
#
4+
# Project: Nord highlight.js
5+
# Repository: https://github.com/arcticicestudio/nord-highlightjs
6+
# License: MIT
7+
18
assets/**
29
src/**
310
.circleci/**

.npmrc

Lines changed: 8 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1 +1,9 @@
1+
# Copyright (C) 2017-present Arctic Ice Studio <[email protected]>
2+
# Copyright (C) 2017-present Sven Greb <[email protected]>
3+
#
4+
# Project: Nord highlight.js
5+
# Repository: https://github.com/arcticicestudio/nord-highlightjs
6+
# License: MIT
7+
8+
package-lock=true
19
save-exact=true

.stylelintrc.js

Lines changed: 23 additions & 25 deletions
Original file line numberDiff line numberDiff line change
@@ -1,33 +1,31 @@
11
/*
2-
++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++
3-
title stylelint Configuration +
4-
project nord-highlightjs +
5-
repository https://github.com/arcticicestudio/nord-highlightjs +
6-
author Arctic Ice Studio +
7-
8-
copyright Copyright (C) 2017 +
9-
++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++
10-
*/
2+
* Copyright (C) 2017-present Arctic Ice Studio <[email protected]>
3+
* Copyright (C) 2017-present Sven Greb <[email protected]>
4+
*
5+
* Project: Nord highlight.js
6+
* Repository: https://github.com/arcticicestudio/nord-highlightjs
7+
* License: MIT
8+
*/
119

1210
/**
13-
* Configuration for stylelint.
14-
*
15-
* @see https://stylelint.io
16-
* @see https://stylelint.io/user-guide/rules
17-
* @see https://github.com/stylelint/stylelint-config-standard
18-
*/
11+
* Configuration for stylelint.
12+
*
13+
* @see https://stylelint.io
14+
* @see https://stylelint.io/user-guide/rules
15+
* @see https://github.com/stylelint/stylelint-config-standard
16+
*/
1917
module.exports = {
20-
"extends": "stylelint-config-standard",
21-
"rules": {
18+
extends: "stylelint-config-standard",
19+
rules: {
2220
"color-hex-case": "lower",
2321
"comment-empty-line-before": null,
2422
"selector-pseudo-element-colon-notation": "single",
25-
"at-rule-empty-line-before": [ "always", {
26-
except: [
27-
"blockless-after-same-name-blockless",
28-
"first-nested"
29-
],
30-
ignoreAtRules: ["after-comment", "import"]
31-
}]
23+
"at-rule-empty-line-before": [
24+
"always",
25+
{
26+
except: ["blockless-after-same-name-blockless", "first-nested"],
27+
ignoreAtRules: ["after-comment", "import"]
28+
}
29+
]
3230
}
33-
}
31+
};

.travis.yml

Lines changed: 8 additions & 11 deletions
Original file line numberDiff line numberDiff line change
@@ -1,15 +1,12 @@
1-
# ++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++
2-
# title Travis CI Build Configuration +
3-
# project nord-highlightjs +
4-
# repository https://github.com/arcticicestudio/nord-highlightjs +
5-
# author Arctic Ice Studio +
6-
7-
# copyright Copyright (C) 2017 +
8-
# ++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++
9-
#
10-
# [References]
11-
# Travis CI Documentation
1+
# Copyright (C) 2017-present Arctic Ice Studio <[email protected]>
2+
# Copyright (C) 2017-present Sven Greb <[email protected]>
3+
4+
# Project: Nord highlight.js
5+
# Repository: https://github.com/arcticicestudio/nord-highlightjs
6+
# License: MIT
7+
# References:
128
# https://docs.travis-ci.com/user/languages/javascript-with-nodejs
9+
1310
language: node_js
1411
dist: trusty
1512
sudo: false

0 commit comments

Comments
 (0)