
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.
@funboxteam/eslint-config
Advanced tools
ESLint rules that follow our style guide.
Based on the well-known Airbnb JS Style Guide.
npm install --save-dev @funboxteam/eslint-config
Include into a project config using flag -c, and pass paths for files as arguments:
eslint -c node_modules/@funboxteam/eslint-config/.eslintrc.js src/app src/sandbox
To lint tests files use the separated config:
eslint -c node_modules/@funboxteam/eslint-config/.eslintrc.tests.js src/tests
Also you can create your own .eslintrc.js
and extend this config there:
module.exports = {
extends: '@funboxteam',
env: {
browser: true
},
globals: {
fetcher: 'readonly',
System: 'readonly',
moment: 'readonly'
},
settings: {
'import/resolver': {
webpack: {
config: 'config/webpack.config.dev.js',
}
}
},
}
Same for tests' config:
module.exports = {
extends: '@funboxteam/eslint-config/tests',
globals: {
__utils__: 'readonly',
}
}
Read more about .eslintrc.js
in ESLint docs.
7.4.0 (25.08.2022)
Update dependencies:
Update peerDependencies:
FAQs
ESLint rules that follow our style guide
The npm package @funboxteam/eslint-config receives a total of 276 weekly downloads. As such, @funboxteam/eslint-config popularity was classified as not popular.
We found that @funboxteam/eslint-config 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.