-
-
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.
- Loading branch information
1 parent
f47a3e6
commit e4b285c
Showing
17 changed files
with
148 additions
and
80 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,17 @@ | ||
{ | ||
"presets": [ | ||
[ | ||
"@babel/preset-env", { | ||
"modules": false, | ||
"targets": { | ||
"browsers": [ | ||
"ie >= 9", | ||
"last 2 versions", | ||
"safari >= 7" | ||
] | ||
}, | ||
"loose": true | ||
} | ||
] | ||
] | ||
} |
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,9 @@ | ||
root = true | ||
|
||
[*] | ||
charset = utf-8 | ||
end_of_line = lf | ||
indent_style = space | ||
indent_size = 2 | ||
insert_final_newline = true | ||
trim_trailing_whitespace = true |
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,12 @@ | ||
{ | ||
"rules": {}, | ||
"parser": "babel-eslint", | ||
"parserOptions": { | ||
"ecmaVersion": 6, | ||
"sourceType": "module" | ||
}, | ||
"extends": ["eslint:recommended"], | ||
"env": { | ||
"browser": 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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,14 +1,18 @@ | ||
# Folders | ||
node_modules/ | ||
# macOS filesystem | ||
.DS_Store | ||
Thumbs.db | ||
|
||
# Files In Folders | ||
schemes/*.chback | ||
# Editors and IDEs | ||
.sublime/ | ||
|
||
# Files | ||
*.sublime-project | ||
*.sublime-workspace | ||
package-lock.json | ||
# Generated folders | ||
node_modules/ | ||
.rpt2_cache | ||
dist/ | ||
demo/*.js | ||
|
||
# Other | ||
.DS_Store | ||
*.cache | ||
# Generated files | ||
package-lock.json | ||
npm-debug | ||
yarn.lock | ||
yarn-error.log |
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 @@ | ||
module.exports = { extends: ["@commitlint/config-conventional"] }; |
This file was deleted.
Oops, something went wrong.
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,7 +1,6 @@ | ||
/*eslint-disable no-undef */ | ||
module.exports = { | ||
tailingComma: "all", | ||
trailingComma: "es5", | ||
tabWidth: 4, | ||
semi: false, | ||
singleQuote: false | ||
semi: true, | ||
singleQuote: true | ||
} |
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,2 @@ | ||
export { light } from "./variations/light" | ||
export { dark } from "./variations/dark" |
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,20 @@ | ||
export interface IColors { | ||
cursor: string; | ||
foreground: string; | ||
background: string; | ||
comments: string; | ||
blue: string; | ||
brown: string; | ||
cyan: string; | ||
green: string; | ||
orange: string; | ||
pink: string; | ||
purple: string; | ||
red: string; | ||
yellow: string; | ||
invalid: string; | ||
deprecated: string; | ||
diffAdded: string; | ||
diffModified: string; | ||
diffDeleted: string; | ||
} |
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,22 @@ | ||
import { IColors } from "./../interfaces" | ||
|
||
export const light: IColors = { | ||
cursor: '#7e57c2', | ||
foreground: '#455A64', | ||
background: '#fbfbfb', | ||
comments: '#90a4ae', | ||
blue: '#6182b8', | ||
brown: '#bc5454', | ||
cyan: '#5fb3b3', | ||
green: '#91b859', | ||
orange: '#f76d47', | ||
pink: '#ff5370', | ||
purple: '#7c4dff', | ||
red: '#e53935', | ||
yellow: '#f3ad2c', | ||
deprecated: '#ffc777a1', | ||
invalid: '#d3423e66', | ||
diffAdded: '#9ccc65', | ||
diffModified: '#e2b93d', | ||
diffDeleted: '#ef5350', | ||
}; |
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 @@ | ||
{ | ||
"compilerOptions": { | ||
"module": "commonjs", | ||
"declaration": true, | ||
"target": "es6", | ||
"outDir": "dist", | ||
"lib": ["es7", "dom"], | ||
"esModuleInterop": true, | ||
"sourceMap": true, | ||
"allowUnreachableCode": false, | ||
"noUnusedLocals": true, | ||
"noUnusedParameters": true, | ||
"noImplicitAny": true, | ||
"resolveJsonModule": true | ||
}, | ||
"include": ["src/*.ts"], | ||
"exclude": ["node_modules", "dist"] | ||
} |