Skip to content

Commit

Permalink
v6.0.7
Browse files Browse the repository at this point in the history
  • Loading branch information
sidneys committed Sep 16, 2017
1 parent 609b90b commit 1b80558
Show file tree
Hide file tree
Showing 88 changed files with 19,660 additions and 4,520 deletions.
9 changes: 5 additions & 4 deletions .appveyor.yml
Original file line number Diff line number Diff line change
Expand Up @@ -10,9 +10,8 @@ branches:
version: '{build}-{branch}'

cache:
- 'node_modules'
- '%APPDATA%\npm-cache'
- '%USERPROFILE%\.electron'
- "node_modules"
- "%LOCALAPPDATA%\\Yarn"

init:
- cmd: echo 🚦 Authorizing Build
Expand All @@ -21,12 +20,14 @@ init:

install:
- cmd: echo 🔧 Setting up Environment
- ps: Install-Product node 7.8.0
- ps: Install-Product node 8
- cmd: npm --global update npm
- cmd: npm --global install yarn

before_build:
- cmd: echo 📥 Installing Dependencies
- cmd: npm install
- cmd: yarn install

build_script:
- cmd: echo 📦 Building
Expand Down
3 changes: 3 additions & 0 deletions .editorconfig
Original file line number Diff line number Diff line change
Expand Up @@ -15,5 +15,8 @@ trim_trailing_whitespace = false
[*.yml]
indent_size = 2

[.eslintrc]
indent_size = 2

[package.json]
indent_size = 2
File renamed without changes.
109 changes: 109 additions & 0 deletions .eslintrc
Original file line number Diff line number Diff line change
@@ -0,0 +1,109 @@
{
"env": {
"browser": true,
"es6": true,
"node": true
},
"globals": {
"Audio": false,
"global": false,
"getEventListeners": false
},
"rules": {
"no-bitwise": "off",
"camelcase": "off",
"curly": "error",
"eqeqeq": "error",
"wrap-iife": "off",
"indent": [
"error",
4,
{
"SwitchCase": 1
}
],
"no-use-before-define": [
"error",
{
"functions": false
}
],
"no-caller": "error",
"quotes": [
"error",
"single",
{
"allowTemplateLiterals": true
}
],
"no-undef": "error",
"no-unused-vars": "error",
"strict": [
"error",
"global"
],
"dot-notation": "off",
"no-with": "error",
"no-mixed-spaces-and-tabs": "error",
"no-multi-str": "error",
"key-spacing": [
"error",
{
"beforeColon": false,
"afterColon": true
}
],
"object-curly-spacing": [
"error",
"always"
],
"space-unary-ops": [
"error",
{
"words": false,
"nonwords": false
}
],
"space-before-function-paren": [
"error",
{
"anonymous": "ignore",
"named": "never"
}
],
"space-in-parens": [
"error",
"never"
],
"comma-dangle": [
"error",
"never"
],
"no-trailing-spaces": "error",
"comma-style": [
"error",
"last"
],
"eol-last": "error",
"space-infix-ops": "error",
"keyword-spacing": [
"error",
{}
],
"space-before-blocks": [
"error",
"always"
],
"linebreak-style": [
"error",
"unix"
],
"valid-jsdoc": [
"warn",
{
"requireReturn": false,
"requireReturnDescription": false
}
]
}
}
15 changes: 9 additions & 6 deletions .gitignore
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
# BASELINE
## BASELINE
# macOS
.DS_Store

Expand All @@ -10,7 +10,7 @@ logs
temp
tmp

# Caches
# Cache
.cache
cache
.sass-cache
Expand All @@ -22,10 +22,13 @@ cache
# VSCode
.vscode

# Compiled
build

# Dependencies
# nodeJS
node_modules
jspm_packages
bower_components

# Compiled
build

# Generated documentation
RELEASENOTES.md
43 changes: 0 additions & 43 deletions .jscsrc

This file was deleted.

26 changes: 0 additions & 26 deletions .jshintrc

This file was deleted.

25 changes: 14 additions & 11 deletions .npmignore
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
# BASELINE
## BASELINE
# macOS
.DS_Store

Expand All @@ -13,18 +13,25 @@ tmp
# Cache
.cache
cache
.sass-cache/
.sass-cache

# JetBrains
.idea/
.idea
*.sln.iml

# Compiled
build
# VSCode
.vscode

# Node
# nodeJS
node_modules
jspm_packages
bower_components

# Compiled
build

# Generated documentation
RELEASENOTES.md


## NPM
Expand All @@ -40,8 +47,4 @@ lib-cov
coverage

# Grunt intermediate storage (http://gruntjs.com/creating-plugins#storing-task-files)
.grunt


# ELECTRON-CLOUD-DEPLOY CACHES
electron-cloud-deploy-cache
.grunt
9 changes: 6 additions & 3 deletions .travis.yml
Original file line number Diff line number Diff line change
Expand Up @@ -4,8 +4,9 @@ matrix:
osx_image: xcode8.2
sudo: required
- os: linux
dist: trusty
sudo: required
dist: trusty
group: edge
compiler: clang

language: c
Expand All @@ -16,8 +17,8 @@ branches:

cache:
directories:
- "$HOME/.electron"
- "./node_modules"
- "${HOME}/.yarn-cache"

addons:
apt:
Expand All @@ -36,12 +37,14 @@ before_install:
- if [[ "${OSTYPE}" == "linux"* ]] && [[ "${DEPLOY_LINUX}" == 0 ]]; then travis_terminate 0; fi
- echo "🔧 Setting up Environment"
- curl -o- https://raw.githubusercontent.com/creationix/nvm/master/install.sh | NVM_DIR="${HOME}"/.nvm sh
- source "${HOME}"/.nvm/nvm.sh && nvm install 7.8.0 && nvm use 7.8.0
- source "${HOME}"/.nvm/nvm.sh && nvm install 8.5.0 && nvm use 8.5.0
- npm --global update npm
- npm --global install yarn

install:
- echo "📥 Installing Dependencies"
- npm install
- yarn install

script:
- echo "📦 Building"
Expand Down
Loading

0 comments on commit 1b80558

Please sign in to comment.