Skip to content

Commit

Permalink
eslint-disable-next-line added
Browse files Browse the repository at this point in the history
  • Loading branch information
rvilarl committed Apr 8, 2021
1 parent 3ff52c1 commit 269cd30
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 1 deletion.
1 change: 1 addition & 0 deletions src/element.ts
Original file line number Diff line number Diff line change
Expand Up @@ -15,6 +15,7 @@ import { RenderContext } from './types/common';

/** Element attributes. */
export interface ElementAttributes {
// eslint-disable-next-line
[name: string]: any;
id: string;
type: string;
Expand Down
4 changes: 3 additions & 1 deletion src/fraction.ts
Original file line number Diff line number Diff line change
Expand Up @@ -50,7 +50,9 @@ export class Fraction {
/**
* LCMM: Lowest common multiple for more than two numbers.
*/
static LCMM(args: any): number {
static LCMM(
// eslint-disable-next-line
args: any): number {
if (args.length === 0) {
return 0;
}
Expand Down

0 comments on commit 269cd30

Please sign in to comment.