-
-
Notifications
You must be signed in to change notification settings - Fork 15
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
13 changed files
with
1,955 additions
and
36 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,18 @@ | ||
# ++++++++++++++++++++++ | ||
# + Base Configuration + | ||
# ++++++++++++++++++++++ | ||
[*] | ||
charset = utf-8 | ||
end_of_line = lf | ||
indent_size = 2 | ||
indent_style = space | ||
insert_final_newline = true | ||
max_line_length = 160 | ||
trim_trailing_whitespace = true | ||
|
||
# +++++++++++++ | ||
# + Languages + | ||
# +++++++++++++ | ||
# +++ Markdown +++ | ||
[*.{md,gfm}] | ||
trim_trailing_whitespace = 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 |
---|---|---|
@@ -0,0 +1,73 @@ | ||
/* | ||
+++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++ | ||
title ESLint Configuration + | ||
project nord-terminix + | ||
repository https://github.com/arcticicestudio/nord-terminix + | ||
author Arctic Ice Studio + | ||
email development@arcticicestudio.com + | ||
copyright Copyright (C) 2017 + | ||
+++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++ | ||
[References] | ||
ESLint | ||
http://eslint.org/docs/user-guide/configuring | ||
http://eslint.org/docs/user-guide/configuring#using-configuration-files | ||
http://eslint.org/docs/user-guide/configuring#specifying-environments | ||
http://eslint.org/docs/user-guide/configuring#configuring-plugins | ||
http://eslint.org/docs/rules | ||
*/ | ||
module.exports = { | ||
"env": { | ||
"node": true, | ||
"es6": true, | ||
"browser": true | ||
}, | ||
"plugins": ["json"], | ||
"parserOptions": { | ||
"ecmaVersion": 6, | ||
"ecmaFeatures": { | ||
"jsx": true | ||
} | ||
}, | ||
"extends": [ | ||
"eslint:recommended" | ||
], | ||
"rules": { | ||
// Style Guide | ||
"array-bracket-spacing": ["error", "never"], | ||
"comma-dangle": ["error", "never"], | ||
"curly":["error", "all"], | ||
"func-call-spacing": ["error", "never"], | ||
"indent": ["error", 2], | ||
"linebreak-style": ["error", "unix"], | ||
"no-duplicate-imports": "error", | ||
"no-tabs": "error", | ||
"no-var": "error", | ||
"quotes": ["error", "double"], | ||
"semi": ["error", "always"], | ||
// Error Prevention | ||
"no-cond-assign": ["error", "always"], | ||
"no-console": "off", | ||
// Code Performance | ||
"global-require": "warn", | ||
// Documentation | ||
"require-jsdoc": ["warn", { | ||
"require": { | ||
"FunctionDeclaration": true, | ||
"MethodDefinition": false, | ||
"ClassDeclaration": true, | ||
"ArrowFunctionExpression": false | ||
} | ||
}], | ||
"valid-jsdoc": ["error", { | ||
"prefer": { | ||
"arg": "param", | ||
"argument": "param", | ||
"class": "constructor", | ||
"virtual": "abstract" | ||
}, | ||
"requireParamDescription": true, | ||
"requireReturnDescription": true | ||
}] | ||
} | ||
} |
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
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 |
---|---|---|
@@ -1,16 +1,34 @@ | ||
<p align="center"><img src="https://cdn.rawgit.com/arcticicestudio/nord-terminix/develop/src/assets/nord-terminix-banner.svg"/></p> | ||
|
||
<p align="center"><img src="https://assets-cdn.github.com/favicon.ico" width=24 height=24/> <a href="https://github.com/arcticicestudio/nord-terminix/releases/latest"><img src="https://img.shields.io/github/release/arcticicestudio/nord-terminix.svg"/></a> <a href="https://github.com/arcticicestudio/nord/releases/tag/v0.1.0"><img src="https://img.shields.io/badge/Nord-v0.1.0-blue.svg"/></a></p> | ||
<p align="center"><img src="https://assets-cdn.github.com/favicon.ico" width=24 height=24/> <a href="https://github.com/arcticicestudio/nord-terminix/releases/latest"><img src="https://img.shields.io/github/release/arcticicestudio/nord-terminix.svg"/></a> <a href="https://github.com/arcticicestudio/nord/releases/tag/v0.2.0"><img src="https://img.shields.io/badge/Nord-v0.2.0-88C0D0.svg"/></a> <a href="https://gnunn1.github.io/terminix-web"><img src="https://img.shields.io/badge/Terminix-v1.5.0+-4C566A.svg"/></a></p> | ||
|
||
--- | ||
|
||
# 0.1.0 (2016-11-19) | ||
# 0.2.0 | ||
*2017-02-21* | ||
## Features | ||
Implemented the main JSON color scheme file. | ||
❯ Implemented support for advanced color settings including [badges](https://gnunn1.github.io/terminix-web/manual/badges). Disabled by default to allow users to enable them when they fit their needs. (@arcticicestudio, #9, cdf1c580) | ||
|
||
<p align="center"><strong>Advanced Color Settings</strong><br><img src="https://raw.githubusercontent.com/arcticicestudio/nord-terminix/develop/src/assets/scrot-feature-advanced-settings.png"/><br><strong>Badges</strong><br><img src="https://raw.githubusercontent.com/arcticicestudio/nord-terminix/develop/src/assets/scrot-feature-advanced-settings-badges.png"/></p> | ||
|
||
## Improvements | ||
### Toolbox | ||
❯ Implemented a [`gulpfile.js`](https://github.com/arcticicestudio/nord-terminix/blob/develop/gulpfile.js) to run ESLint with defined [`.eslintrc.js`](https://github.com/arcticicestudio/nord-terminix/blob/develop/.eslintrc.js) rules. (@arcticicestudio, #10, 1b92f2f2) | ||
|
||
### Continuous Integration Builds | ||
❯ [Circle CI](https://circleci.com/gh/arcticicestudio/nord-terminix) builds are now running against the latest [Node](https://nodejs.org) `6.x.x` version (@arcticicestudio, #10, 1b92f2f2) | ||
❯ [Travis-CI](https://travis-ci.org/arcticicestudio/nord-terminix) builds are now running against the latest [Node](https://nodejs.org) `6.x.x` and `4.x.x` versions (@arcticicestudio, #10, 1b92f2f2) | ||
❯ Added support for [EditorConfig](http://editorconfig.org) by defining rules via a [`.editorconfig`](https://github.com/arcticicestudio/nord-terminix/blob/develop/.editorconfig) file. (@arcticicestudio, #11, 748ac20c) | ||
|
||
# 0.1.0 | ||
*2016-11-19* | ||
## Features | ||
❯ Implemented the main JSON color scheme file. | ||
Detailed instructions to install the scheme file can be found in the [README](https://github.com/arcticicestudio/nord-terminix/blob/develop/README.md#installation). | ||
(@arcticicestudio, #1, b4179195) | ||
|
||
<p align="center"><img src="https://raw.githubusercontent.com/arcticicestudio/nord-terminix/develop/src/assets/scrot-colortest.png"/><br><strong>htop</strong><br><img src="https://raw.githubusercontent.com/arcticicestudio/nord-terminix/develop/src/assets/scrot-htop.png"/></p> | ||
|
||
# 0.0.0 (2016-11-19) | ||
# 0.0.0 | ||
*2016-11-19* | ||
**Project Initialization** |
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,43 @@ | ||
/* | ||
+++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++ | ||
title Project Gulp File + | ||
project nord-terminix + | ||
repository https://github.com/arcticicestudio/nord-terminix + | ||
author Arctic Ice Studio + | ||
email development@arcticicestudio.com + | ||
copyright Copyright (C) 2017 + | ||
+++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++ | ||
[References] | ||
Gulp | ||
(http://gulpjs.com) | ||
npmjs | ||
(https://www.npmjs.com) | ||
*/ | ||
/*+---------+ | ||
+ Imports + | ||
+---------+*/ | ||
const gulp = require("gulp-help")(require("gulp")); | ||
const eslint = require("gulp-eslint"); | ||
|
||
/*+-------+ | ||
+ Tasks + | ||
+-------+*/ | ||
/** | ||
* Shows the help. | ||
* | ||
* @since 0.2.0 | ||
*/ | ||
gulp.task("default", ["help"]); | ||
|
||
/** | ||
* Lints the color theme JSON file. | ||
* | ||
* @since 0.2.0 | ||
*/ | ||
gulp.task("lint", "Lints the color theme JSON file", () => { | ||
return gulp.src("./src/json/nord.json") | ||
.pipe(eslint()) | ||
.pipe(eslint.format()) | ||
.pipe(eslint.failAfterError()); | ||
}); |
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
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
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.