mirror of
https://gerrit.wikimedia.org/r/mediawiki/extensions/CodeEditor
synced 2024-11-23 14:56:43 +00:00
Use json extension for .stylelintrc
Bug: T173516 Change-Id: I3216495396d962490b2ef69caa0e5f6263a4922d
This commit is contained in:
parent
e1916c274c
commit
beb54ff999
|
@ -18,7 +18,8 @@ module.exports = function ( grunt ) {
|
|||
all: [
|
||||
'**/*.js',
|
||||
'!node_modules/**',
|
||||
'!modules/ace/**'
|
||||
'!modules/ace/**',
|
||||
'!vendor/**'
|
||||
]
|
||||
},
|
||||
stylelint: {
|
||||
|
@ -26,14 +27,16 @@ module.exports = function ( grunt ) {
|
|||
'**/*.css',
|
||||
'**/*.less',
|
||||
'!node_modules/**',
|
||||
'!modules/ace/**'
|
||||
'!modules/ace/**',
|
||||
'!vendor/**'
|
||||
]
|
||||
},
|
||||
banana: conf.MessagesDirs,
|
||||
jsonlint: {
|
||||
all: [
|
||||
'**/*.json',
|
||||
'!node_modules/**'
|
||||
'!node_modules/**',
|
||||
'!vendor/**'
|
||||
]
|
||||
}
|
||||
} );
|
||||
|
|
Loading…
Reference in a new issue