-
-
Notifications
You must be signed in to change notification settings - Fork 7
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
1 parent
8cb1bc2
commit d3cb3d7
Showing
690 changed files
with
11,494 additions
and
0 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,11 @@ | ||
.gitattributes export-ignore | ||
.gitignore export-ignore | ||
|
||
# Files | ||
README.md export-ignore | ||
gulpfile.babel.js export-ignore | ||
|
||
# Folders | ||
/src export-ignore | ||
/public export-ignore | ||
/gulp-tasks export-ignore |
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 @@ | ||
{ | ||
"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,2 @@ | ||
*.md | ||
examples/ |
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", "plugin:json/recommended"], | ||
"env": { | ||
"browser": 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,14 @@ | ||
# Handle line endings automatically for files detected as text and leave all | ||
# files detected as binary untouched. | ||
* text=auto | ||
|
||
# Files and directories with the attribute export-ignore won’t be added to | ||
# archive files. See http://git-scm.com/docs/gitattributes for details. | ||
/.github/ export-ignore | ||
/examples/ export-ignore | ||
/messages/ export-ignore | ||
/src/ export-ignore | ||
/.eslintignore export-ignore | ||
/.eslintrc.js export-ignore | ||
/.gitattributes export-ignore | ||
/.gitignore export-ignore |
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,16 @@ | ||
# Folders | ||
node_modules/ | ||
|
||
# Files In Folders | ||
schemes/*.chback | ||
src/*.js | ||
src/schemes/**/*.js | ||
|
||
# Files | ||
*.sublime-project | ||
*.sublime-workspace | ||
package-lock.json | ||
|
||
# Other | ||
.DS_Store | ||
*.cache |
Empty file.
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 @@ | ||
sudo: false | ||
language: node_js | ||
cache: npm | ||
install: | ||
- nvm install node | ||
- node -v | ||
- npm i | ||
node_js: | ||
- '8' | ||
branches: | ||
only: | ||
- master | ||
script: | ||
- npm run lint |
Oops, something went wrong.