Skip to content
This repository was archived by the owner on Sep 11, 2018. It is now read-only.

Commit 94fe4a9

Browse files
author
Claudio Ludovico Panetta
committed
Fix Codeclimate issues
Codeclimate found some issues on my Javascript styling, I've fixed those problems.
1 parent 6f5ecd2 commit 94fe4a9

File tree

3 files changed

+3
-3
lines changed

3 files changed

+3
-3
lines changed

src/store/states.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -11,5 +11,5 @@ export const state = {
1111
* List of photos available inside
1212
* the gallery.
1313
*/
14-
photos: [],
14+
photos: []
1515
};

src/store/store.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -18,5 +18,5 @@ import {mutations} from "./mutations";
1818
export const store = new Vuex.Store({
1919
state,
2020
getters,
21-
mutations,
21+
mutations
2222
});

webpack.config.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -28,7 +28,7 @@ module.exports = {
2828
options: {
2929
name: '[name].[ext]?[hash]'
3030
}
31-
},
31+
}
3232
]
3333
},
3434
resolve: {

0 commit comments

Comments
 (0)