Skip to content

Commit

Permalink
v4.0.3
Browse files Browse the repository at this point in the history
  • Loading branch information
sidneys committed Nov 14, 2017
1 parent 1317e87 commit e5700fb
Show file tree
Hide file tree
Showing 86 changed files with 19,854 additions and 4,202 deletions.
14 changes: 8 additions & 6 deletions .appveyor.yml
Expand Up @@ -10,28 +10,30 @@ branches:
version: '{build}-{branch}'

cache:
- 'node_modules'
- "node_modules"
- "%LOCALAPPDATA%\\Yarn"

init:
- cmd: echo 🚦 Authorizing Build
- ps: if ($env:OS -eq "Windows_NT" -And $env:DEPLOY_WINDOWS -eq "0") { $host.SetShouldExit(0) }
- cmd: git config --global core.autocrlf input

install:
- cmd: echo 🔧 Setting up Environment
- ps: Install-Product node 8.0.0
- cmd: echo 🔧 Setting up Node
- ps: Install-Product node 9
- 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
- cmd: npm run build --metadata

deploy_script:
- cmd: echo 📮 Deploying
- cmd: echo 📮 Deploying to GitHub
- cmd: npm run deploy

artifacts:
Expand All @@ -40,7 +42,7 @@ artifacts:

notifications:
- provider: Webhook
url: https://webhooks.gitter.im/e/f29f98b58ec67b5f0f59
url: https://webhooks.gitter.im/e/a1a9de50af1c703bfe6c
method: GET
on_build_success: true
on_build_failure: true
Expand Down
11 changes: 11 additions & 0 deletions .deblist
@@ -0,0 +1,11 @@
linuxmint/sarah
linuxmint/sonya
linuxmint/serena
elementaryos/freya
debian/jessie
debian/stretch
debian/buster
ubuntu/xenial
ubuntu/yakkety
ubuntu/zesty
ubuntu/artful
9 changes: 6 additions & 3 deletions .editorconfig
Expand Up @@ -9,11 +9,14 @@ charset = utf-8
trim_trailing_whitespace = true
insert_final_newline = true

[.eslintrc]
indent_size = 2

[*.json]
indent_size = 2

[*.md]
trim_trailing_whitespace = false

[*.yml]
indent_size = 2

[package.json]
indent_size = 2
File renamed without changes.
108 changes: 108 additions & 0 deletions .eslintrc
@@ -0,0 +1,108 @@
{
"env": {
"browser": true,
"es6": true,
"node": true
},
"globals": {
"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
}
]
}
}
21 changes: 15 additions & 6 deletions .gitignore
@@ -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,19 @@ cache
# VSCode
.vscode

# Compiled
build

# Dependencies
# nodeJS
node_modules
jspm_packages
bower_components
pids
*.pid
*.seed
lib-cov
coverage
.grunt

# Compiled
build

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

This file was deleted.

25 changes: 0 additions & 25 deletions .jshintrc

This file was deleted.

47 changes: 0 additions & 47 deletions .npmignore

This file was deleted.

3 changes: 3 additions & 0 deletions .rpmlist
@@ -0,0 +1,3 @@
el/7
fedora/26
opensuse/42.3

0 comments on commit e5700fb

Please sign in to comment.