
Security News
Risky Biz Podcast: Making Reachability Analysis Work in Real-World Codebases
This episode explores the hard problem of reachability analysis, from static analysis limits to handling dynamic languages and massive dependency trees.
@viewar/config-eslint
Advanced tools
to skip installation and configuration,
just runmrm --preset @viewar/mrm-preset lint
install package: npm i -D eslint @viewar/config-eslint
includes all eslint and prettier related plugins and shared configs
eslint (either JS or JSON)
JS - {workspace}/.eslintrc.js:
module.exports = { extends: [require.resolve('@viewar/config-eslint')] };
JSON - {workspace}/.eslintrc:
{ "extends": ["./node_modules/@viewar/config-eslint/index.js"] }
prettier
// {workspace}/prettier.config.js
module.exports = require('@viewar/config-eslint/prettier.config.js');
"lint": "eslint --fix --ext \".js,.jsx,.ts,.tsx\" . --quiet --format pretty && prettier **/*.{css,scss,md,json} --write"
install extensions:
configure vscode:
// {workspace}/.vscode/settings.json
{
// PRETTIER
{
"editor.formatOnSaveTimeout": 500,
"editor.defaultFormatter": "teeLang.vsprettier",
"vsprettier.requireConfig": true,
"vsprettier.packageManager": "npm",
"vsprettier.useEsLint": false,
"vsprettier.useStyleLint": true,
"editor.codeActionsOnSave": { "source.fixAll.eslint": true },
"eslint.validate": [ "javascript", "javascriptreact", "typescript", "typescriptreact" ],
"eslint.alwaysShowStatus": true,
"eslint.run": "onType",
"eslint.lintTask.enable": true,
"eslint.workingDirectories": [{ "directory": ".", "changeProcessCWD": true }],
"javascript.implicitProjectConfig.checkJs": true,
"javascript.validate.enable": false,
"javascript.format.enable": false,
"[javascriptreact]": {
"editor.defaultFormatter": "dbaeumer.vscode-eslint",
"editor.formatOnPaste": false,
"editor.formatOnSave": false,
"editor.formatOnType": false,
"editor.formatOnSaveTimeout": 500
},
}
enables absolute import paths
likeimport Header from 'components/Header'
applied to env 'react'
uses 'tsconfig-paths-webpack-plugin' to resolve import paths
requires: workspaceRoot/tsconfig.json
see path-mapping for typescript
if tsconfig.json is not present it won't use that plugin
and uses the default resolve config:
resolve: {
extensions: ['.jsx', '.js', '.ts', '.tsx', '.json'],
// paths are relative to workspace root
alias: {
components: join(basename(CONSTANTS.paths.src), 'components'),
assets: CONSTANTS.paths.assets
},
modules: ['node_modules'],
}
you can overwrite this config to fit your projects module resolvement,
if you add 'webpack.config.resolve.js' to your workspaceRoot
(use format of 'src/webpack.config.resolve.js')
applied to env 'browser' and 'node'
{
paths: [ './src' ],
extensions: [ '.js', '.jsx', '.json' ],
}
FAQs
ViewAR's shareable config for EsLint
The npm package @viewar/config-eslint receives a total of 0 weekly downloads. As such, @viewar/config-eslint popularity was classified as not popular.
We found that @viewar/config-eslint demonstrated a not healthy version release cadence and project activity because the last version was released a year ago. It has 8 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
This episode explores the hard problem of reachability analysis, from static analysis limits to handling dynamic languages and massive dependency trees.
Security News
/Research
Malicious Nx npm versions stole secrets and wallet info using AI CLI tools; Socket’s AI scanner detected the supply chain attack and flagged the malware.
Security News
CISA’s 2025 draft SBOM guidance adds new fields like hashes, licenses, and tool metadata to make software inventories more actionable.