Run ember-cli-update --to 3.10.1

This commit is contained in:
2019-07-15 18:24:17 +02:00
parent d7a0817ac6
commit 80af572742
5 changed files with 576 additions and 492 deletions
+10 -2
View File
@@ -1,7 +1,7 @@
module.exports = {
root: true,
parserOptions: {
ecmaVersion: 2017,
ecmaVersion: 2018,
sourceType: 'module'
},
globals: {
@@ -41,7 +41,15 @@ module.exports = {
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
// this can be removed once the following is fixed
// https://github.com/mysticatea/eslint-plugin-node/issues/77
'node/no-unpublished-require': 'off'
})
}
]
};