Allows you to enforce a consistent naming pattern for the filename of the specified file.
This rule aims to format the filename of the specified file. This rule uses the glob match syntax to match target files and declare the naming pattern for the filename.
There are six naming conventions built into this rule, including CAMEL_CASE
, PASCAL_CASE
, SNAKE_CASE
, KEBAB_CASE
, SCREAMING_SNAKE_CASE
and FLAT_CASE
.
Formatting | Name |
---|---|
helloWorld | CAMEL_CASE |
HelloWorld | PASCAL_CASE |
hello_world | SNAKE_CASE |
hello-world | KEBAB_CASE |
HELLO_WORLD | SCREAMING_SNAKE_CASE |
helloworld | FLAT_CASE |
If the rule had been set as follows:
...
'check-file/filename-naming-convention': ['error', { 'src/services/*.js': 'PASCAL_CASE' }],
...
Examples of incorrect filename with path for this rule:
src/services/downloadService.js
src/services/downloadservice.js
src/services/download-service.js
src/services/download_service.js
Examples of correct filename with path for this rule:
src/services/DownloadService.js
src/download-service.js // this file is not be specified by the target pattern, so it is skipped
In addition to the built-in naming conventions, you can also set custom naming patterns using glob match syntax. The following code shows an example of how to ensure that all your js
files are named begin with __
:
...
'check-file/filename-naming-convention': ['error', {'**/*.js': '__+([a-z])'}],
...
Tip 1: To selecte all your js
files, your can use the glob expression **/*.js
.
Tip 2: v1 versions have the legacy support for selecting target files based on their extensions. This legacy support has been removed since v2.0.0. Please select your target files by their file path. For example, using **/*.js
instead of *.js
to select all js
files.
Prefined match syntax allow you to capture specific part of the target file pattern and use it in your naming convention pattern. This syntax is particularly useful when you want to make a file to be named the same as its parent folder.
To use prefined match in your rule set, you can use the <index>
syntax. The index refers to the position where the glob matcher occurs in the target file pattern expression, starting with 0
. Read more about glob capture groups in the micromatch documentation.
If the rule had been set as follows:
...
'check-file/filename-naming-convention': ['error', { '**/*/!(index).*': '<1>' }, { 'ignoreMiddleExtensions': true }],
...
Examples of incorrect filename with path for this rule:
src/Portal/type.ts
src/Portal/base.tsx
Examples of correct filename with path for this rule:
src/Portal/index.ts
src/Portal/Portal.test.tsx
src/Portal/Portal.tsx
src/Portal/Portal.types.ts
The key is used to select target files, while the value is used to declare the naming pattern for the filename. You can specify a different naming pattern for different files. The plugin will only check files you explicitly selected:
module.exports = {
plugins: ['check-file'],
rules: {
'check-file/filename-naming-convention': [
'error',
{
'**/*.{jsx,tsx}': 'CAMEL_CASE',
'**/*.{js,ts}': 'KEBAB_CASE',
},
],
},
};
If true
, the rule will ignore the middle extensions of the filename.
In some cases, you may want to ignore the middle extensions of the filename. For example, you want to lint the base name of the config and test/spec files—e.g., babel.config.js
and date.test.js
, you can do so by setting the ignoreMiddleExtensions
option to true
, and the rule will only validate its base name, in this case the base name will be babel
and date
.
module.exports = {
plugins: ['check-file'],
rules: {
'check-file/filename-naming-convention': [
'error',
{
'**/*.{jsx,tsx}': 'CAMEL_CASE',
'**/*.{js,ts}': 'KEBAB_CASE',
},
{
ignoreMiddleExtensions: true,
},
],
},
};
Customizes the error message displayed when a file's filename doesn't match the declared naming pattern. It offers two placeholders for dynamic content:
{{ target }}
: Represents the filename of the non-matching file.{{ pattern }}
: Represents the naming pattern.
module.exports = {
plugins: ['check-file'],
rules: {
'check-file/filename-naming-convention': [
'error',
{ '**/*/!(index).*': '<1>' },
{
errorMessage:
'The file "{{ target }}" does not match file naming convention defined("{{ pattern }}") for this project, see contribute.md for details',
},
],
},
};