-
Notifications
You must be signed in to change notification settings - Fork 11
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
792 changed files
with
26,320 additions
and
3 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
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,40 @@ | ||
# branches to build | ||
#branches: | ||
# whitelist | ||
#only: | ||
# - master | ||
|
||
# What combinations to test | ||
environment: | ||
matrix: | ||
- nodejs_version: "6" | ||
platform: x64 | ||
- nodejs_version: "6" | ||
platform: x86 | ||
- nodejs_version: "8" | ||
platform: x86 | ||
- nodejs_version: "8" | ||
platform: x64 | ||
- nodejs_version: "10" | ||
platform: x64 | ||
|
||
install: | ||
# Use version based on tag | ||
- ps: $env:package_version = (Get-Content -Raw -Path package.json | ConvertFrom-Json).version | ||
- ps: Update-AppveyorBuild -Version "$env:package_version-$env:APPVEYOR_BUILD_NUMBER" | ||
|
||
# install node | ||
# Get the latest stable version of Node.js or io.js | ||
- ps: Install-Product node $env:nodejs_version | ||
|
||
# install grunt-cli globally | ||
- npm install -g grunt-cli | ||
# install modules | ||
- npm install | ||
|
||
test_script: | ||
# Output useful info for debugging | ||
- node --version && npm --version | ||
|
||
# Don't actually build. | ||
build: off |
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,15 @@ | ||
[*.js] | ||
indent_style = space | ||
indent_size = 2 | ||
continuation_indent_size = 2 | ||
insert_final_newline = true | ||
quote_type = single | ||
space_after_anonymous_functions = true | ||
space_after_control_statements = true | ||
spaces_around_operators = true | ||
trim_trailing_whitespace = true | ||
spaces_in_brackets = false | ||
curly_bracket_next_line = true | ||
indent_brace_style = 1TBS | ||
end_of_line = lf | ||
charset = utf-8 |
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,27 @@ | ||
{ | ||
"rules": { | ||
"indent": [2, 2, {"SwitchCase": 1, "VariableDeclarator": 2}], | ||
"curly": [2, "all"], | ||
"operator-linebreak": [2, "after"], | ||
"camelcase": [2, {"properties": "never"}], | ||
"quotes": [2, "single"], | ||
"no-multi-str": 2, | ||
"no-mixed-spaces-and-tabs": 2, | ||
"no-trailing-spaces": 2, | ||
"space-unary-ops": [2, | ||
{ | ||
"nonwords": false, | ||
"overrides": {} | ||
} | ||
], | ||
"brace-style": [2, "1tbs", {"allowSingleLine": true}], | ||
"keyword-spacing": [2, {}], | ||
"space-infix-ops": 2, | ||
"space-before-blocks": [2, "always"], | ||
"eol-last": 2, | ||
"space-before-function-paren": [2, "always"], | ||
"array-bracket-spacing": [2, "never", {"singleValue": false}], | ||
"space-in-parens": [2, "never"], | ||
"no-multiple-empty-lines": 2 | ||
} | ||
} |
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,26 @@ | ||
# Exports for git archive | ||
/test export-ignore | ||
.editorconfig export-ignore | ||
.gitattributes export-ignore | ||
.gitignore export-ignore | ||
.eslintrc.json export-ignore | ||
.jshintignore export-ignore | ||
.jshintrc export-ignore | ||
.travis.yml export-ignore | ||
.appveyor.yml export-ignore | ||
bower.json | ||
Gruntfile.js export-ignore | ||
performance.* export-ignore | ||
|
||
# Line endings control | ||
CHANGELOG.md text | ||
CONTRIBUTING.md text | ||
CREDITS.md text | ||
license.txt text | ||
|
||
# Force LF on js files | ||
*.js text eol=lf | ||
|
||
# Force binary mode on bin dir and dist fir | ||
bin/* binary | ||
dist/* binary |
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,6 @@ | ||
.idea/ | ||
.build/ | ||
.DS_Store | ||
node_modules | ||
npm-debug.log | ||
/*.test.* |
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,5 @@ | ||
Gruntfile.js | ||
dist/**/*.js | ||
build/**/*.js | ||
src/options.js | ||
bin/* |
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,29 @@ | ||
{ | ||
"node": true, | ||
"browser": true, | ||
"esnext": true, | ||
"bitwise": true, | ||
"camelcase": true, | ||
"curly": true, | ||
"eqeqeq": true, | ||
"immed": true, | ||
"indent": 2, | ||
"latedef": "nofunc", | ||
"newcap": true, | ||
"noarg": true, | ||
"quotmark": "single", | ||
"undef": false, | ||
"unused": true, | ||
"strict": true, | ||
"trailing": true, | ||
"smarttabs": true, | ||
"onevar": true, | ||
"globals": { | ||
"angular": true, | ||
"module": true, | ||
"define": true, | ||
"window": true, | ||
"document": true, | ||
"showdown": 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,26 @@ | ||
language: node_js | ||
node_js: | ||
- "6" | ||
- "8" | ||
- "10" | ||
|
||
before_install: | ||
- npm install -g grunt-cli | ||
|
||
#travis build speed up | ||
sudo: false | ||
cache: | ||
directories: | ||
- node_modules | ||
|
||
# scripts | ||
script: grunt test | ||
|
||
# hooks | ||
notifications: | ||
webhooks: | ||
urls: | ||
- https://webhooks.gitter.im/e/e369617839852624aa69 | ||
on_success: change # options: [always|never|change] default: always | ||
on_failure: always # options: [always|never|change] default: always | ||
on_start: false # default: false |
Oops, something went wrong.