Skip to content

Commit

Permalink
fix: ESLint fixes
Browse files Browse the repository at this point in the history
  • Loading branch information
mike-north committed Nov 8, 2018
1 parent 928d093 commit 8309547
Showing 1 changed file with 5 additions and 15 deletions.
20 changes: 5 additions & 15 deletions .eslintrc.js
Original file line number Diff line number Diff line change
@@ -1,21 +1,16 @@
/* eslint-env node */
module.exports = {
root: true,
parserOptions: {
ecmaVersion: 2017,
sourceType: 'module'
},
plugins: [
'ember'
],
extends: [
'eslint:recommended',
'plugin:ember/recommended'
],
plugins: ['ember'],
extends: ['eslint:recommended', 'plugin:ember/recommended'],
env: {
browser: true
},
rules: {
},
rules: {},
overrides: [
// node files
{
Expand All @@ -28,12 +23,7 @@ module.exports = {
'config/**/*.js',
'tests/dummy/config/**/*.js'
],
excludedFiles: [
'addon/**',
'addon-test-support/**',
'app/**',
'tests/dummy/app/**'
],
excludedFiles: ['addon/**', 'addon-test-support/**', 'app/**', 'tests/dummy/app/**'],
parserOptions: {
sourceType: 'script',
ecmaVersion: 2015
Expand Down

0 comments on commit 8309547

Please sign in to comment.