Package Exports
- eslint-plugin-file-contains
- eslint-plugin-file-contains/lib/index.js
This package does not declare an exports field, so the exports above have been automatically detected and optimized by JSPM instead. If any package subpath is missing, it is recommended to post an issue to the original package (eslint-plugin-file-contains) to support the "exports" field. If that is not possible, create a JSPM override to customize the exports field for this package.
Readme
eslint-plugin-file-contains
ESLint rules for ensuring files have consistent usage of desired features. Allows you to enforce usage of imports across various file locations.
Installation
You'll first need to install ESLint:
npm install eslint --save-dev
Next, install
eslint-plugin-file-contains
:
npm install eslint-plugin-file-contains --save-dev
Usage
Add file-contains
to the plugins section of your .eslintrc
configuration file. You can omit the eslint-plugin-
prefix:
{
"plugins": ["check-file"]
}
Then configure the rules you want to use under the rules section.
{
"rules": {
"file-contains/every-file-imports": [
"error",
{
"**/*.test.{js,jsx,ts,tsx}": "jest-axe",
"**/*.{jsx,tsx}": "react"
}
]
}
}
Supported Rules
- file-contains/every-file-imports: Enforce that every file imports from an expected location for the specified file pattern