Skip to content

Commit

Permalink
prettier --write '**/*.js'
Browse files Browse the repository at this point in the history
  • Loading branch information
papandreou committed Feb 14, 2021
1 parent 5468f3a commit 3a3d706
Show file tree
Hide file tree
Showing 10 changed files with 10 additions and 30 deletions.
4 changes: 1 addition & 3 deletions lib/renderers/Additive.js
@@ -1,8 +1,6 @@
const CounterStyle = require('./CounterStyle');

module.exports = class Additive extends (
CounterStyle
) {
module.exports = class Additive extends CounterStyle {
static get cssName() {
return 'additive';
}
Expand Down
4 changes: 1 addition & 3 deletions lib/renderers/Alphabetic.js
@@ -1,8 +1,6 @@
const CounterStyle = require('./CounterStyle');

module.exports = class Alphabetic extends (
CounterStyle
) {
module.exports = class Alphabetic extends CounterStyle {
static get cssName() {
return 'alphabetic';
}
Expand Down
4 changes: 1 addition & 3 deletions lib/renderers/Cyclic.js
@@ -1,8 +1,6 @@
const CounterStyle = require('./CounterStyle');

module.exports = class Cyclic extends (
CounterStyle
) {
module.exports = class Cyclic extends CounterStyle {
static get cssName() {
return 'cyclic';
}
Expand Down
4 changes: 1 addition & 3 deletions lib/renderers/Fixed.js
@@ -1,8 +1,6 @@
const CounterStyle = require('./CounterStyle');

module.exports = class Fixed extends (
CounterStyle
) {
module.exports = class Fixed extends CounterStyle {
static get cssName() {
return 'fixed';
}
Expand Down
4 changes: 1 addition & 3 deletions lib/renderers/LowerAlpha.js
@@ -1,8 +1,6 @@
const Alphabetic = require('./Alphabetic');

module.exports = class LowerAlpha extends (
Alphabetic
) {
module.exports = class LowerAlpha extends Alphabetic {
static get cssName() {
return 'lower-alpha';
}
Expand Down
4 changes: 1 addition & 3 deletions lib/renderers/LowerLatin.js
@@ -1,8 +1,6 @@
const Alphabetic = require('./Alphabetic');

module.exports = class LowerLatin extends (
Alphabetic
) {
module.exports = class LowerLatin extends Alphabetic {
static get cssName() {
return 'lower-latin';
}
Expand Down
4 changes: 1 addition & 3 deletions lib/renderers/Numeric.js
@@ -1,8 +1,6 @@
const CounterStyle = require('./CounterStyle');

module.exports = class Numeric extends (
CounterStyle
) {
module.exports = class Numeric extends CounterStyle {
static get cssName() {
return 'numeric';
}
Expand Down
4 changes: 1 addition & 3 deletions lib/renderers/Symbolic.js
@@ -1,8 +1,6 @@
const CounterStyle = require('./CounterStyle');

module.exports = class Symbolic extends (
CounterStyle
) {
module.exports = class Symbolic extends CounterStyle {
static get cssName() {
return 'symbolic';
}
Expand Down
4 changes: 1 addition & 3 deletions lib/renderers/UpperAlpha.js
@@ -1,8 +1,6 @@
const Alphabetic = require('./Alphabetic');

module.exports = class LowerLatin extends (
Alphabetic
) {
module.exports = class LowerLatin extends Alphabetic {
static get cssName() {
return 'upper-alpha';
}
Expand Down
4 changes: 1 addition & 3 deletions lib/renderers/UpperLatin.js
@@ -1,8 +1,6 @@
const Alphabetic = require('./Alphabetic');

module.exports = class LowerLatin extends (
Alphabetic
) {
module.exports = class LowerLatin extends Alphabetic {
static get cssName() {
return 'upper-latin';
}
Expand Down

0 comments on commit 3a3d706

Please sign in to comment.