Skip to content

Commit

Permalink
rebuild for Simpla OSS
Browse files Browse the repository at this point in the history
  • Loading branch information
Sean King committed Oct 17, 2017
1 parent 72e19fd commit 4561553
Show file tree
Hide file tree
Showing 87 changed files with 3,661 additions and 7,950 deletions.
46 changes: 35 additions & 11 deletions .babelrc
@@ -1,13 +1,37 @@
{
"presets": [
[
"env", {
"modules": false
}
]
],
"plugins": [
"external-helpers",
"transform-object-assign"
]
"env": {
"test": {
"presets": [
[
"env",
{
"targets": {
"node": "current"
},
"modules": "commonjs"
}
]
]
},
"production": {
"presets": [
[
"env",
{
"targets": {
"browsers": [
"last 2 versions",
"ie >= 11"
]
},
"modules": false
}
]
],
"plugins": [
"external-helpers",
"transform-object-assign"
]
}
}
}
42 changes: 9 additions & 33 deletions .eslintrc
@@ -1,45 +1,21 @@
{
"parser": "babel-eslint",
"env": {
"browser": true,
"node": true,
"es6": true
},
"globals": {
"VERSION": false
},
"extends": "eslint:recommended",
"parserOptions": {
"ecmaVersion": 2017,
"sourceType": "module"
},
"globals": {
"Polymer": true
},
"rules": {
"no-undef": 2,
"no-redeclare": 2,
"no-unused-vars": 2,

"no-cond-assign": 0,
"no-console": 0,
"no-extra-parens": 2,

"block-scoped-var": 2,
"eqeqeq": [2, "smart"],
"no-else-return": 2,
"no-floating-decimal": 2,
"wrap-iife": [2, "inside"],
"no-use-before-define": 1,

"brace-style": 2,
"camelcase": 2,
"no-lonely-if": 2,
"keyword-spacing": 2,
"space-in-brackets": 0,
"space-infix-ops": 2,

"strict": [2, "never"],
"indent": [2, 2, {"VariableDeclarator": { "var": 2, "let": 2, "const": 3 }}],
"quotes": [2, "single"],
"one-var": [2, {
"let": "always"
}]
"no-undefined": "error",
"no-unused-vars": "warn",
"indent": ["error", 2, { "SwitchCase": 1 }],
"linebreak-style": ["error", "unix"],
"semi": ["error", "always"]
}
}
30 changes: 30 additions & 0 deletions .github/ISSUE_TEMPLATE.md
@@ -0,0 +1,30 @@
<!--
Thanks for reporting an issue! Remember, an issue isn't the place for support requests or 'how to' questions. Use Stack Overflow or join us on Slack (https://slack.simpla.io) instead
-->

### I'm submitting a
- [ ] Bug report
- [ ] Feature request

### Description

### Steps to reproduce the problem
<!-- Be as detailed as possible, if submitting a feature request say what problem or use-case you think it will solve -->

### Browsers Affected
<!-- Check all that apply, add versions if possible -->
- [ ] Chrome
- [ ] Firefox
- [ ] Edge
- [ ] Safari
- [ ] IE 11

### Error messages
<!-- Add any error messages from the console, if they're long link to a Gist -->


### Environment
<!-- Full version of Simpla (eg: 3.0.1), Platform (eg: macOS), and other libraries used (eg: React) -->
- Simpla version:
- Platform:
- Other libraries:
22 changes: 22 additions & 0 deletions .github/PULL_REQUEST_TEMPLATE.md
@@ -0,0 +1,22 @@
<!--
Thank you for your contribution to Simpla! 🎉
Make sure you review the guidelines for contributing before submitting a PR, and that your PR addresses a known issue or has been discussed with the team previously
-->

### Type of change

- [ ] Bugfix
- [ ] New feature
- [ ] Enhancement of existing feature
- [ ] Breaking change

### Description
<!-- Describe the purpose of this PR, if it fixes a bug or resolves a feature request link to the relevant issue -->


### Checklist
<!-- Make sure all these are checked before submitting your PR -->

- [ ] All tests are passing
- [ ] New tests were created to address changes in PR
- [ ] Updated README and/or documentation, if necessary
15 changes: 6 additions & 9 deletions .gitignore
@@ -1,14 +1,11 @@
# Dist
simpla.js
simpla.min.js

# Deps
node_modules
bower_components

# Built files
# UNCOMMENT WHEN PUBLISHED TO NPM
# adapters
# simpla.min.js

# Runtime
.DS_Store
*.log

# Test Builds
.test
*.log
20 changes: 0 additions & 20 deletions .travis.yml

This file was deleted.

0 comments on commit 4561553

Please sign in to comment.