Skip to content

Commit

Permalink
refactor(starter): reformat code with Prettier after Prettier upgrade
Browse files Browse the repository at this point in the history
  • Loading branch information
SuperITMan committed Mar 10, 2021
1 parent dc3a3fb commit 3890784
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion starter/karma.conf.ci.js
Original file line number Diff line number Diff line change
Expand Up @@ -10,6 +10,6 @@ const starkStarterSpecificConfiguration = Object.assign({}, defaultKarmaCIConfig
});

// export the configuration function that karma expects and simply return the stark configuration
module.exports = config => {
module.exports = (config) => {
return config.set(starkStarterSpecificConfiguration);
};
2 changes: 1 addition & 1 deletion starter/karma.conf.js
Original file line number Diff line number Diff line change
Expand Up @@ -19,7 +19,7 @@ const starkStarterSpecificConfiguration = Object.assign({}, defaultKarmaConfig,

// export the configuration function that karma expects and simply return the stark configuration
module.exports = {
default: function(config) {
default: function (config) {
return config.set(starkStarterSpecificConfiguration);
},
karmaTypescriptExclusions: karmaTypescriptExclusions
Expand Down

0 comments on commit 3890784

Please sign in to comment.