
Product
Socket Now Supports pylock.toml Files
Socket now supports pylock.toml, enabling secure, reproducible Python builds with advanced scanning and full alignment with PEP 751's new standard.
eslint-plugin-enact
Advanced tools
Enact specific linting rules for ESLint
Install ESLint either locally or globally.
$ npm install eslint
If you installed ESLint
globally, you have to install React plugin globally too. Otherwise, install it locally.
$ npm install eslint-plugin-enact
Add plugins
section and specify ESLint-plugin-Enact as a plugin.
{
"plugins": [
"enact"
]
}
You can also specify some settings that will be shared across all the plugin rules.
{
"settings": {
"enact": {
"kind": "kind", // Regex for Component Factory to use, default to "kind"
"hoc": "hoc" // Regex for HoC Factory to use, default to "hoc"
}
}
}
If it is not already the case you must also configure ESLint
to support JSX.
With ESLint 1.x.x:
{
"ecmaFeatures": {
"jsx": true
}
}
With ESLint 2.x.x+:
{
"parserOptions": {
"ecmaFeatures": {
"jsx": true
}
}
}
Finally, enable all of the rules that you would like to use:
"rules": {
"enact/kind-name": 1,
"enact/display-name": 1,
"enact/prop-types": 1,
"enact/no-module-exports-import": 2
}
name
in a Enact component definitiondisplayName
in a React component definitions without false-flagging Enact kindsNote:
enact/display-name
andenact/prop-types
supersedereact/display-name
andreact/prop-types
, respectively. The latter two should be disabled when used with Enact.
ESLint-plugin-Enact is based on work from ESLint-plugin-React and is licensed under the MIT License.
Unless otherwise specified, all content, including all source code files and documentation files in this repository are:
Copyright (c) 2016-2023 LG Electronics
Unless otherwise specified or set forth in the NOTICE file, all content, including all source code files and documentation files in this repository are: Licensed under the Apache License, Version 2.0 (the "License"); you may not use this content except in compliance with the License. You may obtain a copy of the License at
http://www.apache.org/licenses/LICENSE-2.0
Unless required by applicable law or agreed to in writing, software distributed under the License is distributed on an "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. See the License for the specific language governing permissions and limitations under the License.
[1.0.6] - (December 21, 2023)
FAQs
Enact specific linting rules for ESLint
The npm package eslint-plugin-enact receives a total of 8,593 weekly downloads. As such, eslint-plugin-enact popularity was classified as popular.
We found that eslint-plugin-enact demonstrated a healthy version release cadence and project activity because the last version was released less than a year ago. It has 0 open source maintainers collaborating on the project.
Did you know?
Socket for GitHub automatically highlights issues in each pull request and monitors the health of all your open source dependencies. Discover the contents of your packages and block harmful activity before you install or update your dependencies.
Product
Socket now supports pylock.toml, enabling secure, reproducible Python builds with advanced scanning and full alignment with PEP 751's new standard.
Security News
Research
Socket uncovered two npm packages that register hidden HTTP endpoints to delete all files on command.
Research
Security News
Malicious Ruby gems typosquat Fastlane plugins to steal Telegram bot tokens, messages, and files, exploiting demand after Vietnam’s Telegram ban.