Skip to content

Commit 93e2383

Browse files
committed
chore: whitespace changes
Remove trailing whitespaces Match indentation on all files to the JavaScript setting Small change in Gruntfile to remove unneeded curly braces
1 parent 842f7e4 commit 93e2383

8 files changed

+485
-489
lines changed

.editorconfig

+2-2
Original file line numberDiff line numberDiff line change
@@ -4,6 +4,6 @@
44
root = true
55

66
# 2 space indentation
7-
[*.js]
7+
[*]
88
indent_style = space
9-
indent_size = 2
9+
indent_size = 2

Gruntfile.coffee

+4-6
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@ path = require 'path'
22

33
# Build configurations.
44
module.exports = (grunt) ->
5-
grunt.initConfig
5+
grunt.initConfig
66
# Compile CoffeeScript (.coffee) files to JavaScript (.js).
77
coffee:
88
src:
@@ -22,11 +22,9 @@ module.exports = (grunt) ->
2222
copy:
2323
dist:
2424
files: [
25-
{
26-
src: ['./scripts/dropdowns.js']
27-
dest: './dist/angular-dropdowns.js'
28-
filter: 'isFile'
29-
}
25+
src: ['./scripts/dropdowns.js']
26+
dest: './dist/angular-dropdowns.js'
27+
filter: 'isFile'
3028
]
3129

3230
uglify:

0 commit comments

Comments
 (0)