Skip to content

Commit

Permalink
fix: lint and prettier
Browse files Browse the repository at this point in the history
  • Loading branch information
JohannThapa committed Nov 23, 2024
1 parent 4c00b6f commit 2b0ab38
Show file tree
Hide file tree
Showing 10 changed files with 401 additions and 362 deletions.
11 changes: 5 additions & 6 deletions src/app/core/models/project.model.ts
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
import { IStack } from "./tech-stacks.model";
import { IStack } from './tech-stacks.model';

export interface IProject{
export interface IProject {
id: string;
title: string;
description?: string;
Expand All @@ -18,8 +18,7 @@ export interface ISite {
name?: string;
}

export interface ITechnology{
category?: string;
items?: IStack[];
export interface ITechnology {
category?: string;
items?: IStack[];
}

Original file line number Diff line number Diff line change
Expand Up @@ -8,9 +8,8 @@ describe('ExpTechnologiesComponent', () => {

beforeEach(async () => {
await TestBed.configureTestingModule({
imports: [ExpTechnologiesComponent]
})
.compileComponents();
imports: [ExpTechnologiesComponent],
}).compileComponents();

fixture = TestBed.createComponent(ExpTechnologiesComponent);
component = fixture.componentInstance;
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -5,8 +5,6 @@ import { Component } from '@angular/core';
standalone: true,
imports: [],
templateUrl: './exp-technologies.component.html',
styleUrl: './exp-technologies.component.scss'
styleUrl: './exp-technologies.component.scss',
})
export class ExpTechnologiesComponent {

}
export class ExpTechnologiesComponent {}
Original file line number Diff line number Diff line change
Expand Up @@ -8,9 +8,8 @@ describe('PrjModalComponent', () => {

beforeEach(async () => {
await TestBed.configureTestingModule({
imports: [PrjModalComponent]
})
.compileComponents();
imports: [PrjModalComponent],
}).compileComponents();

fixture = TestBed.createComponent(PrjModalComponent);
component = fixture.componentInstance;
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -5,8 +5,6 @@ import { Component } from '@angular/core';
standalone: true,
imports: [],
templateUrl: './prj-modal.component.html',
styleUrl: './prj-modal.component.scss'
styleUrl: './prj-modal.component.scss',
})
export class PrjModalComponent {

}
export class PrjModalComponent {}
56 changes: 29 additions & 27 deletions src/app/modules/dashboard/pages/experience/data/technologies.ts
Original file line number Diff line number Diff line change
@@ -1,32 +1,33 @@
import { ITechnology } from "src/app/core/models/project.model";
import { ITechnology } from 'src/app/core/models/project.model';

export const TECHNOLOGIES: ITechnology[] = [
{
category: 'Backend',
items: [
{
name: 'Python',
logo: "/assets/images/logos/python.png",
logo: '/assets/images/logos/python.png',
id: 1,
url: 'https://www.python.org/',
active: true,
description: "Python is a programming language that lets you work quickly and integrate systems more effectively."
description:
'Python is a programming language that lets you work quickly and integrate systems more effectively.',
},
{
name: 'Node.js',
logo: "/assets/images/logos/nodejs.png",
logo: '/assets/images/logos/nodejs.png',
id: 2,
url: 'https://nodejs.org/',
active: true,
description: "Node.js is a JavaScript runtime built on Chrome's V8 JavaScript engine."
description: "Node.js is a JavaScript runtime built on Chrome's V8 JavaScript engine.",
},
{
name: 'Express.js',
logo: "/assets/images/logos/expressjs.png",
logo: '/assets/images/logos/expressjs.png',
id: 3,
url: 'https://expressjs.com/',
active: true,
description: "Express.js is a fast, unopinionated, minimalist web framework for Node.js."
description: 'Express.js is a fast, unopinionated, minimalist web framework for Node.js.',
},
],
},
Expand All @@ -35,27 +36,27 @@ export const TECHNOLOGIES: ITechnology[] = [
items: [
{
name: 'React',
logo: "/assets/images/logos/react.png",
logo: '/assets/images/logos/react.png',
id: 4,
url: 'https://reactjs.org/',
active: true,
description: "React is a JavaScript library for building user interfaces."
description: 'React is a JavaScript library for building user interfaces.',
},
{
name: 'Angular',
logo: "/assets/images/logos/angular.png",
logo: '/assets/images/logos/angular.png',
id: 5,
url: 'https://angular.io/',
active: true,
description: "Angular is a platform for building mobile and desktop web applications."
description: 'Angular is a platform for building mobile and desktop web applications.',
},
{
name: 'Vue.js',
logo: "/assets/images/logos/vuejs.png",
logo: '/assets/images/logos/vuejs.png',
id: 6,
url: 'https://vuejs.org/',
active: true,
description: "Vue.js is a progressive framework for building user interfaces."
description: 'Vue.js is a progressive framework for building user interfaces.',
},
],
},
Expand All @@ -64,19 +65,19 @@ export const TECHNOLOGIES: ITechnology[] = [
items: [
{
name: 'Flutter',
logo: "/assets/images/logos/flutter.png",
logo: '/assets/images/logos/flutter.png',
id: 7,
url: 'https://flutter.dev/',
active: true,
description: "Flutter is an open-source UI software development kit created by Google."
description: 'Flutter is an open-source UI software development kit created by Google.',
},
{
name: 'React Native',
logo: "/assets/images/logos/react-native.png",
logo: '/assets/images/logos/react-native.png',
id: 8,
url: 'https://reactnative.dev/',
active: true,
description: "React Native is an open-source UI software framework for building mobile applications."
description: 'React Native is an open-source UI software framework for building mobile applications.',
},
],
},
Expand All @@ -85,19 +86,20 @@ export const TECHNOLOGIES: ITechnology[] = [
items: [
{
name: 'Electron',
logo: "/assets/images/logos/electron.png",
logo: '/assets/images/logos/electron.png',
id: 9,
url: 'https://www.electronjs.org/',
active: true,
description: "Electron is a framework for building cross-platform desktop apps with JavaScript, HTML, and CSS."
description: 'Electron is a framework for building cross-platform desktop apps with JavaScript, HTML, and CSS.',
},
{
name: '.NET',
logo: "/assets/images/logos/dotnet.png",
logo: '/assets/images/logos/dotnet.png',
id: 10,
url: 'https://dotnet.microsoft.com/',
active: true,
description: ".NET is a free, cross-platform, open-source developer platform for building many different types of applications."
description:
'.NET is a free, cross-platform, open-source developer platform for building many different types of applications.',
},
],
},
Expand All @@ -106,27 +108,27 @@ export const TECHNOLOGIES: ITechnology[] = [
items: [
{
name: 'Adobe Photoshop',
logo: "/assets/images/logos/photoshop.png",
logo: '/assets/images/logos/photoshop.png',
id: 11,
url: 'https://www.adobe.com/products/photoshop.html',
active: true,
description: "Adobe Photoshop is a raster graphics editor developed by Adobe."
description: 'Adobe Photoshop is a raster graphics editor developed by Adobe.',
},
{
name: 'Adobe Illustrator',
logo: "/assets/images/logos/illustrator.png",
logo: '/assets/images/logos/illustrator.png',
id: 12,
url: 'https://www.adobe.com/products/illustrator.html',
active: true,
description: "Adobe Illustrator is a vector graphics editor and design program developed by Adobe."
description: 'Adobe Illustrator is a vector graphics editor and design program developed by Adobe.',
},
{
name: 'Figma',
logo: "/assets/images/logos/figma.png",
logo: '/assets/images/logos/figma.png',
id: 13,
url: 'https://www.figma.com/',
active: true,
description: "Figma is a web-based interface design application with real-time collaboration features."
description: 'Figma is a web-based interface design application with real-time collaboration features.',
},
],
},
Expand Down
Loading

0 comments on commit 2b0ab38

Please sign in to comment.