Matches names of files and folders against a regular expression
$ npm install eslint-plugin-pathnames --save-dev
Add pathnames to the plugins section of your .eslintrc configuration file. You can omit the eslint-plugin- prefix:
{
"plugins": [
"pathnames"
]
}Then configure the rules you want to use under the rules section.
{
"rules": {
"pathnames/match": [
"error",
{
"fileNames": "^[0-9A-Za-z]+$",
"folderNames": "^[-_.0-9A-Za-z]+$",
"ignorePaths": "^(scripts|static)"
}
]
}
}where:
fileNamesis a regular expression that file names should match against (required);folderNamesis a regular expression that folder names should match against (optional, defaults tofileNamesvalue);ignorePathsis a regular expression that should match against relative paths of files that should be ignored (optional).