![Create React App Officially Deprecated Amid React 19 Compatibility Issues](https://cdn.sanity.io/images/cgdhsj6q/production/04fa08cf844d798abc0e1a6391c129363cc7e2ab-1024x1024.webp?w=400&fit=max&auto=format)
Security News
Create React App Officially Deprecated Amid React 19 Compatibility Issues
Create React App is officially deprecated due to React 19 issues and lack of maintenance—developers should switch to Vite or other modern alternatives.
@cleverage/eslint-config
Advanced tools
Clever Age javaScript coding style guide.
This config depends on Airbnb coding style guide.
Using NPM:
npm install --save-dev @cleverage/eslint-config
Using Yarn:
yarn add --dev @cleverage/eslint-config
Clever Age eslint config need some peer dependencies mainly inherited from AirBnB config. To install it you have to run this command:
npx install-peerdeps --dev @cleverage/eslint-config
.eslintrc.js
:{
"extends": "@cleverage"
}
no-multiple-empty-lines
'no-multiple-empty-lines': [1, { max: 1, maxEOF: 1, maxBOF: 0 }],
AirBnB’s rules allow 2 successive empty lines but the purpose of a linter is to avoid human debates when reviewing code. To avoid debates on 1 or 2 empty lines, we choose to limit to one only empty line everywhere.
padding-line-between-statements
'padding-line-between-statements': [
'error',
{ blankLine: 'always', prev: '*', next: 'return' },
{ blankLine: 'always', prev: 'import', next: '*' },
{ blankLine: 'never', prev: 'import', next: 'import' },
],
AirBnB set this rule to off
.
We prefer set it to:
import
,import
lines from rest of code by one blank line.return
statement by a blank line if not alone in the code block.FAQs
eslint config for Clever Age projects
The npm package @cleverage/eslint-config receives a total of 2 weekly downloads. As such, @cleverage/eslint-config popularity was classified as not popular.
We found that @cleverage/eslint-config 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
Create React App is officially deprecated due to React 19 issues and lack of maintenance—developers should switch to Vite or other modern alternatives.
Security News
Oracle seeks to dismiss fraud claims in the JavaScript trademark dispute, delaying the case and avoiding questions about its right to the name.
Security News
The Linux Foundation is warning open source developers that compliance with global sanctions is mandatory, highlighting legal risks and restrictions on contributions.