autoformat more files

This commit is contained in:
Zeke Sikelianos 2016-03-25 13:03:49 -07:00 committed by Kevin Sawicki
parent 06b556c34c
commit f35f362272
47 changed files with 4458 additions and 4459 deletions

View file

@ -1,22 +1,22 @@
'use strict';
'use strict'
let value = 'old';
let value = 'old'
class BaseClass {
method() {
return 'method';
method () {
return 'method'
}
get readonly() {
return 'readonly';
get readonly () {
return 'readonly'
}
get value() {
return value;
get value () {
return value
}
set value(val) {
value = val;
set value (val) {
value = val
}
}