Fix trailing whitespace in multiple files

Also fix formatting of CODING_GUIDELINES.md
This commit is contained in:
FranciscoPombal
2020-08-05 16:05:24 +01:00
parent 87527fccc6
commit ef1c7eec74
12 changed files with 382 additions and 350 deletions

View File

@@ -1,5 +1,5 @@
module.exports = function(grunt) {
grunt.initConfig({
svg2png: {
all: {
@@ -7,7 +7,7 @@ module.exports = function(grunt) {
size: 256
},
files: [
{
{
src: ['icons/*.svg']
}
]
@@ -16,7 +16,7 @@ module.exports = function(grunt) {
});
grunt.loadNpmTasks('grunt-svg2png');
grunt.registerTask('default', ['svg2png']);
}