mirror of
https://gerrit.wikimedia.org/r/mediawiki/extensions/CodeEditor
synced 2024-11-27 16:40:07 +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: [
|
all: [
|
||||||
'**/*.js',
|
'**/*.js',
|
||||||
'!node_modules/**',
|
'!node_modules/**',
|
||||||
'!modules/ace/**'
|
'!modules/ace/**',
|
||||||
|
'!vendor/**'
|
||||||
]
|
]
|
||||||
},
|
},
|
||||||
stylelint: {
|
stylelint: {
|
||||||
|
@ -26,14 +27,16 @@ module.exports = function ( grunt ) {
|
||||||
'**/*.css',
|
'**/*.css',
|
||||||
'**/*.less',
|
'**/*.less',
|
||||||
'!node_modules/**',
|
'!node_modules/**',
|
||||||
'!modules/ace/**'
|
'!modules/ace/**',
|
||||||
|
'!vendor/**'
|
||||||
]
|
]
|
||||||
},
|
},
|
||||||
banana: conf.MessagesDirs,
|
banana: conf.MessagesDirs,
|
||||||
jsonlint: {
|
jsonlint: {
|
||||||
all: [
|
all: [
|
||||||
'**/*.json',
|
'**/*.json',
|
||||||
'!node_modules/**'
|
'!node_modules/**',
|
||||||
|
'!vendor/**'
|
||||||
]
|
]
|
||||||
}
|
}
|
||||||
} );
|
} );
|
||||||
|
|
Loading…
Reference in a new issue