Skip to content

Commit

Permalink
WIP support Firestore and Firebase JS SDK 5 (#553)
Browse files Browse the repository at this point in the history
Large breaking change, moving to develop Emberfire v3 on master.
  • Loading branch information
jamesdaniels authored Feb 8, 2019
1 parent aff7426 commit 622f41c
Show file tree
Hide file tree
Showing 219 changed files with 23,108 additions and 18,533 deletions.
4 changes: 0 additions & 4 deletions .bowerrc

This file was deleted.

28 changes: 0 additions & 28 deletions .codeclimate.yml

This file was deleted.

14 changes: 0 additions & 14 deletions .editorconfig
Original file line number Diff line number Diff line change
Expand Up @@ -13,22 +13,8 @@ insert_final_newline = true
indent_style = space
indent_size = 2

[*.js]
indent_style = space
indent_size = 2

[*.hbs]
insert_final_newline = false
indent_style = space
indent_size = 2

[*.css]
indent_style = space
indent_size = 2

[*.html]
indent_style = space
indent_size = 2

[*.{diff,md}]
trim_trailing_whitespace = false
2 changes: 1 addition & 1 deletion .ember-cli
Original file line number Diff line number Diff line change
Expand Up @@ -5,5 +5,5 @@

Setting `disableAnalytics` to true will prevent any data from being sent.
*/
"disableAnalytics": true
"disableAnalytics": false
}
1 change: 0 additions & 1 deletion .eslintignore

This file was deleted.

213 changes: 0 additions & 213 deletions .eslintrc

This file was deleted.

59 changes: 59 additions & 0 deletions .eslintrc.js
Original file line number Diff line number Diff line change
@@ -0,0 +1,59 @@
module.exports = {
root: true,
parserOptions: {
ecmaVersion: 2017,
sourceType: 'module'
},
plugins: [
'ember'
],
extends: [
'eslint:recommended',
'plugin:ember/recommended'
],
env: {
browser: true
},
rules: {
"no-unused-vars": 0, // can't get the _ ignore working
"ember/avoid-leaking-state-in-ember-objects": 0, // using this, TODO override only for the one file
"no-console": 0 // using this, TODO override only for the specific file
},
overrides: [
// node files
{
files: [
'index.js',
'testem.js',
'ember-cli-build.js',
'config/**/*.js',
'tests/dummy/config/**/*.js'
],
excludedFiles: [
'app/**',
'addon/**'
],
parserOptions: {
sourceType: 'script',
ecmaVersion: 2015
},
env: {
browser: false,
node: true
},
plugins: ['node'],
rules: Object.assign({}, require('eslint-plugin-node').configs.recommended.rules, {
// add your custom rules and overrides for node files here
})
},

// test files
{
files: ['tests/**/*.js'],
excludedFiles: ['tests/dummy/**/*.js'],
env: {
embertest: true
}
}
]
};
30 changes: 26 additions & 4 deletions .gitignore
Original file line number Diff line number Diff line change
@@ -1,4 +1,6 @@
# See http://help.github.com/ignore-files/ for more about ignoring files.
# See https://help.github.com/ignore-files/ for more about ignoring files.
.DS_Store
/*.tgz

# compiled output
/dist
Expand All @@ -14,7 +16,27 @@
/connect.lock
/coverage/*
/libpeerconnection.log
npm-debug.log
npm-debug.log*
yarn-error.log
testem.log
.firebaserc
/.project

# ember-try
.node_modules.ember-try/
bower.json.ember-try
package.json.ember-try

addon/**/*.js
app/**/*.js
adapters/*.d.ts
authenticators/*.d.ts
authorizers/*.d.ts
serializers/*.d.ts
services/*.d.ts
session-stores/*.d.ts
torii-adapters/*.d.ts
torii-providers/*.d.ts
initializers/*.d.ts
vendor/**/node_modules
vendor/**/tmp
vendor/**/DEBUG
index.d.ts
Loading

0 comments on commit 622f41c

Please sign in to comment.