Skip to content

Commit

Permalink
feat: force space after start of comments //
Browse files Browse the repository at this point in the history
  • Loading branch information
pozil committed Sep 22, 2023
1 parent b17bbbb commit 0a5619f
Show file tree
Hide file tree
Showing 3 changed files with 5 additions and 2 deletions.
3 changes: 3 additions & 0 deletions force-app/main/default/lwc/.eslintrc.json
Original file line number Diff line number Diff line change
@@ -1,5 +1,8 @@
{
"extends": ["@salesforce/eslint-config-lwc/recommended"],
"rules": {
"spaced-comment": ["error", "always"]
},
"overrides": [
{
"files": ["*.test.js"],
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -22,7 +22,7 @@ jest.mock(
{ virtual: true }
);

//Mock updateContacts
// Mock updateContacts
jest.mock(
'@salesforce/apex/ContactController.updateContacts',
() => {
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,7 @@ import { ShowToastEventName } from 'lightning/platformShowToastEvent';
// Mock realistic data
const mockGetRecord = require('./data/getRecord.json');

//Mock updateContact
// Mock updateContact
jest.mock(
'@salesforce/apex/ContactController.updateContact',
() => {
Expand Down

0 comments on commit 0a5619f

Please sign in to comment.