
Security News
ESLint Adds Official Support for Linting HTML
ESLint now supports HTML linting with 48 new rules, expanding its language plugin system to cover more of the modern web development stack.
eslint-config-cellule
Advanced tools
This is a set of rules and configuration for eslint using Shareable Config.
$ npm install --save-dev eslint@~3.3.0 eslint-config-cellule
In your .eslintrc
config, extends to this module with
{
"extends": ["cellule"]
}
"cellule/global.js"
: Default config (ie: extends: "cellule"
). This contains mostly rules to prevent errors and covers best practices."cellule/frontend.js"
: Config for files targeted for the browser."cellule/babel.js"
: Config for when you use babel to compile your sources.
"cellule/chakra.js"
: Config when your host is ch.exe
for ChakraCore."cellule/codestyle.js"
: Config covering mostly code style preferences."cellule/es2015.js"
: Config when your host supports es2015 without babel."cellule/node.js"
: Config targeting node environment.
"cellule/flow.js"
: Config when using flow.
"cellule/react.js"
: Config when you use React in your sources.
In eslint Shareable Config the order in which you placed your extends
impacts what will take precedence.
Here's a recommended order for this package of rules. (You will rarely if ever need all of them in one project)
{
"extends": [
"cellule/global.js",
"cellule/frontend.js",
"cellule/node.js",
"cellule/chakra.js",
"cellule/codestyle.js",
"cellule/es2015.js",
"cellule/babel.js",
"cellule/react.js",
"cellule/flow.js"
]
}
Version 4.2.0
FAQs
Define my favorite rules for eslint
The npm package eslint-config-cellule receives a total of 12 weekly downloads. As such, eslint-config-cellule popularity was classified as not popular.
We found that eslint-config-cellule demonstrated a not healthy version release cadence and project activity because the last version was released a year ago. It has 1 open source maintainer 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.
Security News
ESLint now supports HTML linting with 48 new rules, expanding its language plugin system to cover more of the modern web development stack.
Security News
CISA is discontinuing official RSS support for KEV and cybersecurity alerts, shifting updates to email and social media, disrupting automation workflows.
Security News
The MCP community is launching an official registry to standardize AI tool discovery and let agents dynamically find and install MCP servers.