Use json extension for .stylelintrc

Bug: T173516
Change-Id: Ie9845533c08f8f879514904f1806c971681c5e65
这个提交包含在:
Umherirrender 2017-08-19 09:39:39 +02:00
父节点 85fca5a602
当前提交 8a92f50587
共有 2 个文件被更改,包括 4 次插入3 次删除

查看文件

@ -17,14 +17,15 @@ module.exports = function ( grunt ) {
jsonlint: {
all: [
'**/*.json',
'.stylelintrc',
'!node_modules/**'
'!node_modules/**',
'!vendor/**'
]
},
stylelint: {
all: [
'**/*.css',
'!node_modules/**'
'!node_modules/**',
'!vendor/**'
]
}
} );