Security News
Node.js EOL Versions CVE Dubbed the "Worst CVE of the Year" by Security Experts
Critics call the Node.js EOL CVE a misuse of the system, sparking debate over CVE standards and the growing noise in vulnerability databases.
@looker/eslint-config
Advanced tools
[![npm version](https://badge.fury.io/js/%40looker%2Feslint-config.svg)](https://badge.fury.io/js/%40looker%2Feslint-config) [![GitHub license](https://img.shields.io/github/license/looker-open-source/eslint-config.svg)](https://github.com/looker-open-sou
This repository provides shared configuration for tooling used in Typescript/Javascript projects in development as part of the looker-open-source organization
It provides configurations for:
We've included support for React & Styled Components in our configurations as they're very commonly used in Looker Typescript projects.
The default export contains all default Airbnb ESLint rules, including ECMAScript 6+, and the ones listed below. It requires some peerDependencies as well.
Install the package with
yarn add @looker/eslint-config eslint -D
Add the config to either your package.json
:
{
"eslintConfig": {
"extends": "@looker/eslint-config"
}
}
to your eslint.config.js
(or .eslintrc.js
):
module.exports = {
extends: '@looker/eslint-config',
}
NOTE: Adding an eslint.config.js
file will allow you to add your own rules to so that your package can add (or disable) additional lint rules as needed:
module.exports = {
extends: ['@looker/eslint-config/workspaces'],
rules: {
/* @TODO - To level-up our code quality we shouldn't ever use `any` */
'@typescript-eslint/no-explicit-any': 'off',
},
}
Need to support a project leveraging Yarn Workspaces? Use: @looker/eslint-config/workspaces
We provide a few stock tsconfig setups for convenience as well. It's expected that you'll need to add more configuration beyond the basics offered within these defaults.
In your project's tsconfig.json
file:
{
"extends": "@looker/eslint-config/tsconfig",
"compilerOptions": { ... }
}
An extension with a few React-specific options is also available: @looker/eslint-config/tsconfig.react
.
NOTE: The React-specific configuration is designed for projects using Babel's Typescript support to build and therefore is only appropriate for doing type-lint work, not for actually building javascript artifacts.
Add the config to your package.json
:
{
"stylelint": {
"extends": "@looker/eslint-config/stylelint"
}
}
Alternatively, you can use a standalone stylelint.config.js
file:
module.exports = {
extends: ['@looker/eslint-config/stylelint'],
}
FAQs
## looker-open-source Typescript / Javascript Configuration
The npm package @looker/eslint-config receives a total of 19 weekly downloads. As such, @looker/eslint-config popularity was classified as not popular.
We found that @looker/eslint-config demonstrated a not healthy version release cadence and project activity because the last version was released a year ago. It has 10 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
Critics call the Node.js EOL CVE a misuse of the system, sparking debate over CVE standards and the growing noise in vulnerability databases.
Security News
cURL and Go security teams are publicly rejecting CVSS as flawed for assessing vulnerabilities and are calling for more accurate, context-aware approaches.
Security News
Bun 1.2 enhances its JavaScript runtime with 90% Node.js compatibility, built-in S3 and Postgres support, HTML Imports, and faster, cloud-first performance.