Security News
Oracle Drags Its Feet in the JavaScript Trademark Dispute
Oracle seeks to dismiss fraud claims in the JavaScript trademark dispute, delaying the case and avoiding questions about its right to the name.
eslint-config-tc
Advanced tools
ESLint shareable config for JavaScript projects
Shared configuration for ESLint. Follow the instructions below to easily include this configuration in another project without having to duplicate the file.
First thing first, let's make sure you have the necessary pre-requisites.
npx install-peerdeps --dev eslint-config-tc
eslint, eslint-plugin-eslint-comments, eslint-plugin-import, eslint-plugin-jest, eslint-plugin-prettier, eslint-plugin-unicorn, and prettier are peer dependencies and must be installed.
Add the following to your .eslintrc.json
file:
{
"extends": "eslint-config-tc"
}
If you need to override a rule, your .eslintrc.json
file should look like the example below. All shared rules will be used, but eqeqeq
will be turned off.
{
"extends": "eslint-config-tc",
"rules": {
"eqeqeq": "off"
}
}
Please see CONTRIBUTING.md.
Please see CHANGELOG.md.
Copyright (c) 2016-2020 Thomas Lindner. Licensed under the MIT license.
FAQs
ESLint shareable config for JavaScript projects
The npm package eslint-config-tc receives a total of 8,845 weekly downloads. As such, eslint-config-tc popularity was classified as popular.
We found that eslint-config-tc demonstrated a healthy version release cadence and project activity because the last version was released less than 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
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.
Security News
Maven Central now validates Sigstore signatures, making it easier for developers to verify the provenance of Java packages.