
Security News
TypeScript is Porting Its Compiler to Go for 10x Faster Builds
TypeScript is porting its compiler to Go, delivering 10x faster builds, lower memory usage, and improved editor performance for a smoother developer experience.
@assemble-inc/eslint-config-assemble
Advanced tools
Assemble front-end linting rules
This package contains Assemble Inc's ESLint configurations for both Typescript and JavaScript projects. ESLint is used for enforcement of code quality across Assemble Inc projects.
All ESLint rules enforcing code style have been disabled in favor of using prettier for code formatting. Refer to the prettier-config for integrating prettier into your application.
From the root of your package, install the Assemble Inc. configuration:
yarn add --dev eslint-config-assemble
You will also need to install the following peer dependencies:
yarn add --dev eslint prettier eslint-plugin-prettier
Add the following scripts to your package.json
.
"scripts": {
"lint": "eslint \"src/**/*.{jsx,js,ts,tsx}\"",
"lint:fix": "eslint \"src/**/*.{jsx,js,ts,tsx}\" --fix"
}
The lint:fix
script will automatically attempt to fix reported errors. Leaving this off will report errors/warnings without attempting to fix them.
You can update the file extensions list to suit the particular files you would like to lint.
The Assemble Inc. configuration needs to be imported into ESLint. Add the following to your package.json
.
"eslintConfig": {
"extends": [
"eslint-config-assemble"
],
"env": {
"browser": true,
"node": true
}
}
To lint all typescript files in your project, run yarn lint
.
To automatically fix linting errors in your project, run yarn lint:fix
or yarn lint --fix
.
FAQs
Assemble front-end linting rules
The npm package @assemble-inc/eslint-config-assemble receives a total of 0 weekly downloads. As such, @assemble-inc/eslint-config-assemble popularity was classified as not popular.
We found that @assemble-inc/eslint-config-assemble demonstrated a not healthy version release cadence and project activity because the last version was released a year ago. It has 3 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.
Security News
TypeScript is porting its compiler to Go, delivering 10x faster builds, lower memory usage, and improved editor performance for a smoother developer experience.
Research
Security News
The Socket Research Team has discovered six new malicious npm packages linked to North Korea’s Lazarus Group, designed to steal credentials and deploy backdoors.
Security News
Socket CEO Feross Aboukhadijeh discusses the open web, open source security, and how Socket tackles software supply chain attacks on The Pair Program podcast.