Initial ESlint conversion
This commit is contained in:
@ -25,7 +25,7 @@ export class CompatibilitySettingAttributes extends XmlAttributeComponent<{
|
||||
// https://docs.microsoft.com/en-us/openspecs/office_standards/ms-docx/90138c4d-eb18-4edc-aa6c-dfb799cb1d0d
|
||||
|
||||
export class CompatibilitySetting extends XmlComponent {
|
||||
constructor(version: number) {
|
||||
public constructor(version: number) {
|
||||
super("w:compatSetting");
|
||||
|
||||
this.root.push(
|
||||
|
@ -79,7 +79,7 @@ export interface ICompatibilityOptions {
|
||||
}
|
||||
|
||||
export class Compatibility extends XmlComponent {
|
||||
constructor(options: ICompatibilityOptions) {
|
||||
public constructor(options: ICompatibilityOptions) {
|
||||
super("w:compat");
|
||||
|
||||
// Don't justify lines ending in soft line break setting
|
||||
|
@ -154,7 +154,7 @@ export interface ISettingsOptions {
|
||||
}
|
||||
|
||||
export class Settings extends XmlComponent {
|
||||
constructor(options: ISettingsOptions) {
|
||||
public constructor(options: ISettingsOptions) {
|
||||
super("w:settings");
|
||||
this.root.push(
|
||||
new SettingsAttributes({
|
||||
|
Reference in New Issue
Block a user