Skip to content

Commit

Permalink
fix linting issues
Browse files Browse the repository at this point in the history
  • Loading branch information
vitebski committed Oct 11, 2020
1 parent cf092d6 commit 25d78b5
Show file tree
Hide file tree
Showing 4 changed files with 2 additions and 19 deletions.
12 changes: 0 additions & 12 deletions addon/components/ember-tagify.js
Original file line number Diff line number Diff line change
Expand Up @@ -50,18 +50,6 @@ export default class EmberTagifyComponent extends Component {

const {
onChange,
placeholder = '',
delimiters,
validatePattern,
mode = 'mix',
duplicates = false,
trim = true,
autoComplete = true,
whitelist = [],
blacklist = [],
maxTags = Infinity,
editTags = 2,
backspace = true,
...rest
} = this.args;

Expand Down
2 changes: 1 addition & 1 deletion ember-cli-build.js
Original file line number Diff line number Diff line change
Expand Up @@ -9,7 +9,7 @@ module.exports = function(defaults) {
});

if (project.findAddonByName('ember-native-dom-event-dispatcher') && process.env.DEPLOY_TARGET === undefined) {
options.vendorFiles = { 'jquery.js': null };
defaults.vendorFiles = { 'jquery.js': null };
}

/*
Expand Down
5 changes: 0 additions & 5 deletions index.js
Original file line number Diff line number Diff line change
@@ -1,10 +1,5 @@
'use strict';

const Funnel = require('broccoli-funnel');
const MergeTrees = require('broccoli-merge-trees');
const map = require('broccoli-stew').map;
const path = require('path');

module.exports = {
name: require('./package').name,
options: {
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -27,7 +27,7 @@ export default class EmberTagify extends Controller {

@action
onTagChange(tagStr) {
this.tagsStr = tagsStr;
this.tagsStr = tagStr;
console.log('onTagChange called');
}
}

0 comments on commit 25d78b5

Please sign in to comment.