-
Notifications
You must be signed in to change notification settings - Fork 8
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
chore: integrate new lint rules and fix all issues (#1488)
- Loading branch information
1 parent
d85b207
commit 8648c3d
Showing
244 changed files
with
4,634 additions
and
2,919 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,18 @@ | ||
module.exports = { | ||
"extends": ["@terminus/eslint-config-frontend"], | ||
"parserOptions": { | ||
"ecmaVersion": 6, | ||
"project": "./tsconfig.json", | ||
"sourceType": "module" | ||
}, | ||
"rules": { | ||
"no-console": [ | ||
"error", | ||
{ | ||
"allow": [ | ||
"warn" | ||
] | ||
} | ||
] | ||
} | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,18 @@ | ||
module.exports = { | ||
"extends": ["@terminus/eslint-config-frontend/development"], | ||
"parserOptions": { | ||
"ecmaVersion": 6, | ||
"project": "./tsconfig.json", | ||
"sourceType": "module" | ||
}, | ||
"rules": { | ||
"no-console": [ | ||
"error", | ||
{ | ||
"allow": [ | ||
"warn" | ||
] | ||
} | ||
] | ||
} | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,13 +1,19 @@ | ||
import { CommonModule } from '@angular/common'; | ||
import { NgModule } from '@angular/core'; | ||
|
||
import { TsCardModule } from '@terminus/ui/card'; | ||
|
||
import { BreakpointsRoutingModule } from './breakpoints-routing.module'; | ||
import { BreakpointsComponent } from './breakpoints.component'; | ||
|
||
|
||
@NgModule({ | ||
imports: [BreakpointsRoutingModule, CommonModule, TsCardModule ], | ||
declarations: [BreakpointsComponent], | ||
imports: [ | ||
BreakpointsRoutingModule, | ||
CommonModule, | ||
TsCardModule, | ||
], | ||
declarations: [ | ||
BreakpointsComponent, | ||
], | ||
}) | ||
export class BreakpointsModule {} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,16 +1,25 @@ | ||
import { CommonModule } from '@angular/common'; | ||
import { NgModule } from '@angular/core'; | ||
import { FormsModule } from '@angular/forms'; | ||
|
||
import { TsButtonModule } from '@terminus/ui/button'; | ||
import { TsCardModule } from '@terminus/ui/card'; | ||
import { TsSpacingModule } from '@terminus/ui/spacing'; | ||
|
||
import { ButtonRoutingModule } from './button-routing.module'; | ||
import { ButtonComponent } from './button.component'; | ||
|
||
|
||
@NgModule({ | ||
imports: [ButtonRoutingModule, CommonModule, FormsModule, TsButtonModule, TsCardModule, TsSpacingModule], | ||
declarations: [ButtonComponent], | ||
imports: [ | ||
ButtonRoutingModule, | ||
CommonModule, | ||
FormsModule, | ||
TsButtonModule, | ||
TsCardModule, | ||
TsSpacingModule, | ||
], | ||
declarations: [ | ||
ButtonComponent, | ||
], | ||
}) | ||
export class ButtonModule {} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Oops, something went wrong.