UI: ember-auto-import (#4933)

* add auto-import
* remove imports that we can and get rid of autosize shim
* remove items from eslinrc
* import base64js in shamir key
This commit is contained in:
Matthew Irish
2018-07-18 09:13:39 -05:00
committed by GitHub
parent c6fd9f5c90
commit 7af1c09e72
9 changed files with 1304 additions and 143 deletions

View File

@@ -3,9 +3,9 @@ module.exports = {
parserOptions: {
ecmaVersion: 2017,
sourceType: 'module',
"ecmaFeatures": {
"experimentalObjectRestSpread": true
}
ecmaFeatures: {
experimentalObjectRestSpread: true,
},
},
extends: 'eslint:recommended',
env: {
@@ -13,12 +13,10 @@ module.exports = {
es6: true,
},
rules: {
"no-unused-vars": ["error", { "ignoreRestSiblings": true }]
'no-unused-vars': ['error', { ignoreRestSiblings: true }],
},
globals: {
base64js: true,
TextEncoderLite: true,
TextDecoderLite: true,
Duration: true
}
},
};