Skip to content

Commit 8a152db

Browse files
committed
Remove trailing commas from imports
1 parent 785c111 commit 8a152db

File tree

11 files changed

+11
-11
lines changed

11 files changed

+11
-11
lines changed

packages/checkbox/src/mwc-checkbox-base.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -16,7 +16,7 @@ limitations under the License.
1616
*/
1717
import {MDCCheckboxAdapter} from '@material/checkbox/adapter.js';
1818
import MDCCheckboxFoundation from '@material/checkbox/foundation.js';
19-
import {addHasRemoveClass, FormElement, html, HTMLElementWithRipple, observer, property, query, RippleSurface,} from '@material/mwc-base/form-element.js';
19+
import {addHasRemoveClass, FormElement, html, HTMLElementWithRipple, observer, property, query, RippleSurface} from '@material/mwc-base/form-element.js';
2020
import {ripple} from '@material/mwc-ripple/ripple-directive.js';
2121

2222
export class CheckboxBase extends FormElement {

packages/drawer/src/mwc-drawer-base.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -20,7 +20,7 @@ import {MDCDrawerAdapter} from '@material/drawer/adapter.js';
2020
import {strings} from '@material/drawer/constants.js';
2121
import MDCDismissibleDrawerFoundation from '@material/drawer/dismissible/foundation.js';
2222
import MDCModalDrawerFoundation from '@material/drawer/modal/foundation.js';
23-
import {addHasRemoveClass, BaseElement, classMap, html, observer, property, PropertyValues, query,} from '@material/mwc-base/base-element.js';
23+
import {addHasRemoveClass, BaseElement, classMap, html, observer, property, PropertyValues, query} from '@material/mwc-base/base-element.js';
2424
import {DocumentWithBlockingElements} from 'blocking-elements';
2525

2626
interface InertableHTMLElement extends HTMLElement {

packages/formfield/src/mwc-formfield-base.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -16,7 +16,7 @@ limitations under the License.
1616
*/
1717
import {MDCFormFieldAdapter} from '@material/form-field/adapter.js';
1818
import MDCFormFieldFoundation from '@material/form-field/foundation.js';
19-
import {BaseElement, classMap, EventType, html, observer, property, query, SpecificEventListener,} from '@material/mwc-base/base-element.js';
19+
import {BaseElement, classMap, EventType, html, observer, property, query, SpecificEventListener} from '@material/mwc-base/base-element.js';
2020
import {FormElement} from '@material/mwc-base/form-element.js';
2121
import {findAssignedElement} from '@material/mwc-base/utils.js';
2222

packages/radio/src/mwc-radio-base.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -14,7 +14,7 @@ WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
1414
See the License for the specific language governing permissions and
1515
limitations under the License.
1616
*/
17-
import {addHasRemoveClass, FormElement, html, HTMLElementWithRipple, observer, property, query,} from '@material/mwc-base/form-element.js';
17+
import {addHasRemoveClass, FormElement, html, HTMLElementWithRipple, observer, property, query} from '@material/mwc-base/form-element.js';
1818
import {ripple} from '@material/mwc-ripple/ripple-directive.js';
1919
import {MDCRadioAdapter} from '@material/radio/adapter.js';
2020
import MDCRadioFoundation from '@material/radio/foundation.js';

packages/slider/src/mwc-slider-base.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -14,7 +14,7 @@ WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
1414
See the License for the specific language governing permissions and
1515
limitations under the License.
1616
*/
17-
import {addHasRemoveClass, classMap, EventType, FormElement, html, observer, property, query, SpecificEventListener,} from '@material/mwc-base/form-element.js';
17+
import {addHasRemoveClass, classMap, EventType, FormElement, html, observer, property, query, SpecificEventListener} from '@material/mwc-base/form-element.js';
1818
import {MDCSliderAdapter} from '@material/slider/adapter.js';
1919
import MDCSliderFoundation from '@material/slider/foundation.js';
2020
import {repeat} from 'lit-html/directives/repeat.js';

packages/snackbar/src/mwc-snackbar-base.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -14,7 +14,7 @@ WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
1414
See the License for the specific language governing permissions and
1515
limitations under the License.
1616
*/
17-
import {addHasRemoveClass, BaseElement, classMap, html, observer, property, query,} from '@material/mwc-base/base-element.js';
17+
import {addHasRemoveClass, BaseElement, classMap, html, observer, property, query} from '@material/mwc-base/base-element.js';
1818
import {MDCSnackbarAdapter} from '@material/snackbar/adapter.js';
1919
import MDCSnackbarFoundation from '@material/snackbar/foundation.js';
2020
import {MDCSnackbarCloseEventDetail} from '@material/snackbar/types';

packages/switch/src/mwc-switch-base.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -14,7 +14,7 @@ WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
1414
See the License for the specific language governing permissions and
1515
limitations under the License.
1616
*/
17-
import {addHasRemoveClass, FormElement, html, HTMLElementWithRipple, observer, property, query,} from '@material/mwc-base/form-element.js';
17+
import {addHasRemoveClass, FormElement, html, HTMLElementWithRipple, observer, property, query} from '@material/mwc-base/form-element.js';
1818
import {ripple} from '@material/mwc-ripple/ripple-directive.js';
1919
import {MDCSwitchAdapter} from '@material/switch/adapter';
2020
import MDCSwitchFoundation from '@material/switch/foundation.js';

packages/tab-bar/src/mwc-tab-bar-base.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -18,7 +18,7 @@ limitations under the License.
1818
import '@material/mwc-tab';
1919
import '@material/mwc-tab-scroller';
2020

21-
import {BaseElement, html, observer, property, query,} from '@material/mwc-base/base-element.js';
21+
import {BaseElement, html, observer, property, query} from '@material/mwc-base/base-element.js';
2222
import {Tab} from '@material/mwc-tab';
2323
import {TabScroller} from '@material/mwc-tab-scroller';
2424
import {MDCTabBarAdapter} from '@material/tab-bar/adapter';

packages/tab-indicator/src/mwc-tab-indicator-base.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -14,7 +14,7 @@ WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
1414
See the License for the specific language governing permissions and
1515
limitations under the License.
1616
*/
17-
import {addHasRemoveClass, BaseElement, classMap, html, property, PropertyValues, query,} from '@material/mwc-base/base-element.js';
17+
import {addHasRemoveClass, BaseElement, classMap, html, property, PropertyValues, query} from '@material/mwc-base/base-element.js';
1818
import {MDCTabIndicatorAdapter} from '@material/tab-indicator/adapter';
1919
import MDCFadingTabIndicatorFoundation from '@material/tab-indicator/fading-foundation.js';
2020
import MDCTabIndicatorFoundation from '@material/tab-indicator/foundation';

packages/tab-scroller/src/mwc-tab-scroller-base.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -15,7 +15,7 @@ See the License for the specific language governing permissions and
1515
limitations under the License.
1616
*/
1717
import {matches} from '@material/dom/ponyfill';
18-
import {addHasRemoveClass, BaseElement, eventOptions, html, query,} from '@material/mwc-base/base-element';
18+
import {addHasRemoveClass, BaseElement, eventOptions, html, query} from '@material/mwc-base/base-element';
1919
import {MDCTabScrollerAdapter} from '@material/tab-scroller/adapter';
2020
import MDCTabScrollerFoundation from '@material/tab-scroller/foundation.js';
2121

0 commit comments

Comments
 (0)