- run eslint --fix across project

This commit is contained in:
Amruth Pillai
2020-07-09 00:14:13 +05:30
parent a1931f5e36
commit 9045e2983d
72 changed files with 1392 additions and 868 deletions

View File

@ -1,68 +1,68 @@
import { AiFillSafetyCertificate, AiOutlineTwitter } from "react-icons/ai";
import { FaAward, FaTools } from "react-icons/fa";
import { IoMdBriefcase, IoMdDocument } from "react-icons/io";
import { MdPerson, MdSchool } from "react-icons/md";
import Awards from "../components/builder/sections/Awards";
import Certifications from "../components/builder/sections/Certifications";
import Education from "../components/builder/sections/Education";
import Objective from "../components/builder/sections/Objective";
import Profile from "../components/builder/sections/Profile";
import Skills from "../components/builder/sections/Skills";
import Social from "../components/builder/sections/Social";
import Work from "../components/builder/sections/Work";
import ModalEvents from "../constants/ModalEvents";
import { AiFillSafetyCertificate, AiOutlineTwitter } from 'react-icons/ai';
import { FaAward, FaTools } from 'react-icons/fa';
import { IoMdBriefcase, IoMdDocument } from 'react-icons/io';
import { MdPerson, MdSchool } from 'react-icons/md';
import Awards from '../components/builder/sections/Awards';
import Certifications from '../components/builder/sections/Certifications';
import Education from '../components/builder/sections/Education';
import Objective from '../components/builder/sections/Objective';
import Profile from '../components/builder/sections/Profile';
import Skills from '../components/builder/sections/Skills';
import Social from '../components/builder/sections/Social';
import Work from '../components/builder/sections/Work';
import ModalEvents from '../constants/ModalEvents';
export default [
{
id: "profile",
name: "Profile",
id: 'profile',
name: 'Profile',
icon: MdPerson,
component: Profile,
},
{
id: "social",
name: "Social Network",
id: 'social',
name: 'Social Network',
icon: AiOutlineTwitter,
component: Social,
event: ModalEvents.SOCIAL_MODAL,
},
{
id: "objective",
name: "Objective",
id: 'objective',
name: 'Objective',
icon: IoMdDocument,
component: Objective,
},
{
id: "work",
name: "Work Experience",
id: 'work',
name: 'Work Experience',
icon: IoMdBriefcase,
component: Work,
event: ModalEvents.WORK_MODAL,
},
{
id: "education",
name: "Education",
id: 'education',
name: 'Education',
icon: MdSchool,
component: Education,
event: ModalEvents.EDUCATION_MODAL,
},
{
id: "awards",
name: "Awards",
id: 'awards',
name: 'Awards',
icon: FaAward,
component: Awards,
event: ModalEvents.AWARD_MODAL,
},
{
id: "certifications",
name: "Certifications",
id: 'certifications',
name: 'Certifications',
icon: AiFillSafetyCertificate,
component: Certifications,
event: ModalEvents.CERTIFICATION_MODAL,
},
{
id: "skills",
name: "Skills",
id: 'skills',
name: 'Skills',
icon: FaTools,
component: Skills,
event: ModalEvents.SKILL_MODAL,

View File

@ -1,14 +1,14 @@
export const tips = [
"Create a professional email address.",
"Update your contact information.",
"Set your font size to 10-12 points.",
"Use reverse-chronological order.",
"Align your content to the left to make it skimmable.",
"Make strategic use of bold, caps, and italics.",
"Choose an attractive and readable font.",
"Only add jobs youve had in the past 10-15 years.",
"Give your sections simple subheadings.",
"Include URLs to social media profiles, personal websites, and your blog.",
'Create a professional email address.',
'Update your contact information.',
'Set your font size to 10-12 points.',
'Use reverse-chronological order.',
'Align your content to the left to make it skimmable.',
'Make strategic use of bold, caps, and italics.',
'Choose an attractive and readable font.',
'Only add jobs youve had in the past 10-15 years.',
'Give your sections simple subheadings.',
'Include URLs to social media profiles, personal websites, and your blog.',
];
export const getRandomTip = () => {