Skip to content

Commit

Permalink
+ styles & other
Browse files Browse the repository at this point in the history
  • Loading branch information
IsaacSomething committed Oct 17, 2022
1 parent 8d1a458 commit fcc6eef
Show file tree
Hide file tree
Showing 19 changed files with 463 additions and 575 deletions.
44 changes: 19 additions & 25 deletions README.md
Original file line number Diff line number Diff line change
@@ -1,27 +1,21 @@
# AngularBase

This project was generated with [Angular CLI](https://github.com/angular/angular-cli) version 14.2.6.

## Development server

Run `ng serve` for a dev server. Navigate to `http://localhost:4200/`. The application will automatically reload if you change any of the source files.

## Code scaffolding

Run `ng generate component component-name` to generate a new component. You can also use `ng generate directive|pipe|service|class|guard|interface|enum|module`.

## Build

Run `ng build` to build the project. The build artifacts will be stored in the `dist/` directory.

## Running unit tests

Run `ng test` to execute the unit tests via [Karma](https://karma-runner.github.io).

## Running end-to-end tests

Run `ng e2e` to execute the end-to-end tests via a platform of your choice. To use this command, you need to first add a package that implements end-to-end testing capabilities.

## Further help

To get more help on the Angular CLI use `ng help` or go check out the [Angular CLI Overview and Command Reference](https://angular.io/cli) page.
Basic project used for quickly cloning to test things out

- "@angular/core": "^14.2.0"
- "@angular/material": "^14.2.5"

#### Prettier config

```
module.exports = {
arrowParens: "avoid",
bracketSpacing: true,
printWidth: 140,
semi: true,
singleQuote: true,
tabWidth: 2,
trailingComma: "none",
useTabs: false,
};
```
10 changes: 10 additions & 0 deletions prettier.config.js
Original file line number Diff line number Diff line change
@@ -0,0 +1,10 @@
module.exports = {
arrowParens: "avoid",
bracketSpacing: true,
printWidth: 140,
semi: true,
singleQuote: true,
tabWidth: 2,
trailingComma: "none",
useTabs: false,
};
2 changes: 1 addition & 1 deletion src/app/app-routing.module.ts
Original file line number Diff line number Diff line change
Expand Up @@ -7,4 +7,4 @@ const routes: Routes = [];
imports: [RouterModule.forRoot(routes)],
exports: [RouterModule]
})
export class AppRoutingModule { }
export class AppRoutingModule {}
Loading

0 comments on commit fcc6eef

Please sign in to comment.