linters should ignore generated docs

Change-Id: Ice9eef1ba6e2b158ab3f7a9f45a4d1a7a41824b8
This commit is contained in:
Adam Wight 2024-02-29 09:38:37 +01:00 committed by WMDE-Fisch
parent 73c90a0e7d
commit 5c7e7f4fbd

View file

@ -21,7 +21,7 @@ module.exports = function ( grunt ) {
},
all: [
'**/*.{js,json}',
'!{vendor,node_modules}/**',
'!{docs,vendor,node_modules}/**',
'!cypress/screenshots/**/*.js'
]
},
@ -30,8 +30,7 @@ module.exports = function ( grunt ) {
all: [
'**/*.css',
'**/*.less',
'!node_modules/**',
'!vendor/**'
'!{docs,node_modules,vendor}/**'
]
}
} );