Skip to content

Commit

Permalink
chore: #1326 updated prettier config to avoid trailing commas
Browse files Browse the repository at this point in the history
  • Loading branch information
MuizNadeem committed May 28, 2020
1 parent f7ab42d commit 8c74bec
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 3 deletions.
1 change: 1 addition & 0 deletions .prettierrc
Expand Up @@ -4,6 +4,7 @@
"useTabs": true,
"tabWidth": 4,
"arrowParens": "always",
"trailingComma": "none",
"overrides": [
{
"files": "*.scss",
Expand Down
Expand Up @@ -4,7 +4,7 @@ import { ApiProperty, ApiPropertyOptional } from '@nestjs/swagger';
import {
ICandidateInterview,
ICandidateFeedback,
ICandidateInterviewers,
ICandidateInterviewers
} from '@gauzy/models';
import { CandidateInterviewers } from '../candidate-interviewers/candidate-interviewers.entity';
import { CandidateFeedback } from '../candidate-feedbacks/candidate-feedbacks.entity';
Expand All @@ -25,13 +25,13 @@ export class CandidateInterview extends Base implements ICandidateInterview {

@ManyToOne((type) => CandidateInterviewers)
@JoinTable({
name: 'candidate_interviewers',
name: 'candidate_interviewers'
})
interviewers?: ICandidateInterviewers[];

@ManyToOne((type) => CandidateFeedback)
@JoinTable({
name: 'candidate_feedbacks',
name: 'candidate_feedbacks'
})
feedbacks?: ICandidateFeedback[];

Expand Down

0 comments on commit 8c74bec

Please sign in to comment.