Skip to content

Commit

Permalink
Fix lint
Browse files Browse the repository at this point in the history
  • Loading branch information
mkszepp committed Nov 17, 2023
1 parent 29d8fc5 commit 6441021
Show file tree
Hide file tree
Showing 6 changed files with 94 additions and 91 deletions.
3 changes: 3 additions & 0 deletions .eslintrc.js
Original file line number Diff line number Diff line change
Expand Up @@ -61,6 +61,9 @@ module.exports = {
// test files
files: ['tests/**/*-test.{js,ts}'],
extends: ['plugin:qunit/recommended'],
rules: {
'qunit/require-expect': 'off',
},
},
],
};
2 changes: 1 addition & 1 deletion compile-css.js
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@ var inputFile = path.join(
__dirname,
'app',
'styles',
'ember-basic-dropdown.scss'
'ember-basic-dropdown.scss',
);
var outputFile = path.join(__dirname, 'vendor', 'ember-basic-dropdown.css');
var buf = fs.readFileSync(inputFile, 'utf8');
Expand Down
Loading

0 comments on commit 6441021

Please sign in to comment.