Skip to content

Commit

Permalink
fix: remove jQuery from eslint
Browse files Browse the repository at this point in the history
  • Loading branch information
icebob committed Aug 9, 2016
1 parent 0f9863c commit 74cc91d
Show file tree
Hide file tree
Showing 6 changed files with 6 additions and 1 deletion.
2 changes: 1 addition & 1 deletion .eslintrc.js
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@ module.exports = {
"browser": true,
"commonjs": true,
"es6": true,
"jquery": true,
"jquery": false,
mocha: true
},
"extends": "eslint:recommended",
Expand Down
1 change: 1 addition & 0 deletions src/fields/fieldDateTime.vue
Original file line number Diff line number Diff line change
Expand Up @@ -6,6 +6,7 @@
</template>

<script>
/* global $ */
import abstractField from "./abstractField";
import moment from "moment";
Expand Down
1 change: 1 addition & 0 deletions src/fields/fieldMasked.vue
Original file line number Diff line number Diff line change
Expand Up @@ -3,6 +3,7 @@
</template>

<script>
/* global $ */
import abstractField from "./abstractField";
export default {
Expand Down
1 change: 1 addition & 0 deletions src/fields/fieldSelectEx.vue
Original file line number Diff line number Diff line change
Expand Up @@ -5,6 +5,7 @@
</template>

<script>
/* global $ */
import {isObject} from "lodash";
import abstractField from "./abstractField";
Expand Down
1 change: 1 addition & 0 deletions src/fields/fieldSlider.vue
Original file line number Diff line number Diff line change
Expand Up @@ -3,6 +3,7 @@
</template>

<script>
/* global $ */
import abstractField from "./abstractField";
import { defaults, isArray } from "lodash";
Expand Down
1 change: 1 addition & 0 deletions src/fields/fieldSpectrum.vue
Original file line number Diff line number Diff line change
Expand Up @@ -3,6 +3,7 @@
</template>

<script>
/* global $ */
import abstractField from "./abstractField";
import { defaults } from "lodash";
export default {
Expand Down

0 comments on commit 74cc91d

Please sign in to comment.