Update checked-in dependencies
This commit is contained in:
parent
aab34601c1
commit
d853bec339
3889 changed files with 146268 additions and 299 deletions
3
node_modules/eslint-plugin-github/lib/rules/filenames-match-regex.js
generated
vendored
3
node_modules/eslint-plugin-github/lib/rules/filenames-match-regex.js
generated
vendored
|
|
@ -25,7 +25,8 @@ module.exports = {
|
|||
},
|
||||
|
||||
create(context) {
|
||||
const defaultRegexp = /^([a-z0-9]+)([A-Z][a-z0-9]+)*$/g
|
||||
// GitHub's default is kebab case or one hump camel case
|
||||
const defaultRegexp = /^[a-z0-9-]+(.[a-z0-9-]+)?$/
|
||||
const conventionRegexp = context.options[0] ? new RegExp(context.options[0]) : defaultRegexp
|
||||
const ignoreExporting = context.options[1] ? context.options[1] : false
|
||||
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue