
Research
/Security News
Weaponizing Discord for Command and Control Across npm, PyPI, and RubyGems.org
Socket researchers uncover how threat actors weaponize Discord across the npm, PyPI, and RubyGems ecosystems to exfiltrate sensitive data.
eslint-config-tyler
Advanced tools
Tyler's ESLint & Prettier configuration.
It's opinionated. It works out of the box.
It supports both Node.js projects and React frontend projects.
It will detect existence of react
to enable React & frontend rules.
yarn add --dev eslint-config-tyler
Create eslint.config.mjs
:
import config from 'eslint-config-tyler/eslint.config.mjs';
export default config;
Create prettier.config.mjs
:
import config from 'eslint-config-tyler/prettier.config.mjs';
export default config;
Run:
yarn eslint . --fix
If you need to change some configuration:
import config from 'eslint-config-tyler/prettier.config.mjs';
config.singleQuote = false;
export default config;
import config from 'eslint-config-tyler/eslint.config.mjs';
config[0].ignores = ['lib/', 'demo/'];
export default config;
Please note that you should NOT add any other keys to config[0]
, because according to ESLint's documentation:
if an ignores key is used without any other keys in the configuration object, then the patterns act as global ignores. Ref: https://eslint.org/docs/latest/use/configure/ignore
You need to create a .prettierignore
file.
It cannot be configured in prettier.config.mjs
file, unfortunately.
config[1].rules[ruleName] = 'off' | 'warn' | 'error';
We should not change config[0]
since it is for ignore only.
"editor.defaultFormatter": "esbenp.prettier-vscode",
"editor.formatOnSave": true,
"editor.codeActionsOnSave": {
"source.fixAll.eslint": "explicit"
},
To make eslint-plugin-react-hooks
work, your react component shouldn't be wrapped.
For example: const App = auto(() => '')
doesn't work because it is wrapped by auto
.
related: https://github.com/jsx-eslint/eslint-plugin-react/issues/3848
It works if I write it like this: const App = auto(function App() { return ''; })
.
FAQs
Tyler's ESLint & Prettier configuration.
The npm package eslint-config-tyler receives a total of 1 weekly downloads. As such, eslint-config-tyler popularity was classified as not popular.
We found that eslint-config-tyler demonstrated a healthy version release cadence and project activity because the last version was released less than a year ago. It has 0 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.
Research
/Security News
Socket researchers uncover how threat actors weaponize Discord across the npm, PyPI, and RubyGems ecosystems to exfiltrate sensitive data.
Security News
Socket now integrates with Bun 1.3’s Security Scanner API to block risky packages at install time and enforce your organization’s policies in local dev and CI.
Research
The Socket Threat Research Team is tracking weekly intrusions into the npm registry that follow a repeatable adversarial playbook used by North Korean state-sponsored actors.