Skip to content

Commit 82e458c

Browse files
committed
moved lint config files to utils folder
1 parent 86c3b7a commit 82e458c

File tree

4 files changed

+3
-3
lines changed

4 files changed

+3
-3
lines changed

Gruntfile.js

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -21,23 +21,23 @@ module.exports = function(grunt) {
2121
jshint: {
2222
all: sourceFiles,
2323
options: {
24-
jshintrc: '.jshintrc',
24+
jshintrc: 'utils/.jshintrc',
2525
reporter: require('jshint-summary')
2626
}
2727
},
2828

2929
eslint: {
3030
target: sourceFiles,
3131
options: {
32-
config: 'eslint.json',
32+
config: 'utils/eslint.json',
3333
rulesdir: ['./node_modules/eslint-rules']
3434
}
3535
},
3636

3737
jscs: {
3838
src: sourceFiles,
3939
options: {
40-
config: 'jscs.json'
40+
config: 'utils/jscs.json'
4141
}
4242
}
4343
});
File renamed without changes.
File renamed without changes.
File renamed without changes.

0 commit comments

Comments
 (0)