0
0
Fork 1
Spiegel von https://github.com/paviliondev/discourse-custom-wizard.git synchronisiert 2024-09-19 15:21:11 +02:00

Exclude no-undef for certain files to make linter happy

Dieser Commit ist enthalten in:
Angus McLeod 2018-03-06 11:38:33 +08:00
Ursprung b7464a3598
Commit 47b5f96ce1
3 geänderte Dateien mit 6 neuen und 1 gelöschten Zeilen

Datei anzeigen

@ -1,3 +1,4 @@
/* eslint no-undef: 0 */
/*global Mousetrap:true */
import { default as computed, on, observes } from 'ember-addons/ember-computed-decorators';
import { cookAsync } from '../lib/text-lite';
@ -38,7 +39,7 @@ const isInside = (text, regex) => {
class Toolbar {
constructor(site) {
constructor() {
this.shortcuts = {};
this.groups = [

Datei anzeigen

@ -1,3 +1,5 @@
/* eslint no-undef: 0 */
import computed from "ember-addons/ember-computed-decorators";
import { siteDir, isRTL, isLTR } from "discourse/lib/text-direction";

Datei anzeigen

@ -1,3 +1,5 @@
/* eslint no-undef: 0 */
import { findCustomWizard } from '../models/custom';
import { ajax } from 'wizard/lib/ajax';