Making Shared ESLint, Prettier Config Files

This page summarizes the projects mentioned and recommended in the original post on dev.to

SurveyJS - Open-Source JSON Form Builder to Create Dynamic Forms Right in Your App
With SurveyJS form UI libraries, you can build and style forms in a fully-integrated drag & drop form builder, render them in your JS app, and store form submission data in any backend, inc. PHP, ASP.NET Core, and Node.js.
surveyjs.io
featured
InfluxDB - Power Real-Time Data Analytics at Scale
Get real-time insights from all types of time series data with InfluxDB. Ingest, query, and analyze billions of data points in real-time with unbounded cardinality.
www.influxdata.com
featured
  • shared-config-example

  • The final code example may be found here: https://github.com/iicdii/shared-config-example

  • eslint-plugin-react-refresh

    Validate that your components can safely be updated with fast refresh

  • module.exports = { // plugin documentation: // https://www.npmjs.com/package/eslint-plugin-react // https://github.com/ArnaudBarre/eslint-plugin-react-refresh // https://www.npmjs.com/package/eslint-plugin-jsx-a11y plugins: ["react", "react-refresh", "jsx-a11y"], extends: [ "plugin:react/recommended", "plugin:react-hooks/recommended", "plugin:react/jsx-runtime", "plugin:@tanstack/eslint-plugin-query/recommended", ], settings: { react: { // Specify the current react version (other than 'detect') // otherwise, it will call the entire react library, leading to slower performance version: "detect", }, }, overrides: [ { files: ['**/__tests__/**/*.[jt]s?(x)', '**/?(*.)+(spec|test).[jt]s?(x)'], extends: ['plugin:testing-library/react'], rules: { 'react-refresh/only-export-components': 'off', }, }, ], rules: { "react-refresh/only-export-components": ["warn", { allowConstantExport: true }], "jsx-a11y/alt-text": [ "warn", { elements: ["img"], }, ], "jsx-a11y/aria-props": "warn", "jsx-a11y/aria-proptypes": "warn", "jsx-a11y/aria-unsupported-elements": "warn", "jsx-a11y/role-has-required-aria-props": "warn", "jsx-a11y/role-supports-aria-props": "warn", "react/no-unknown-property": "off", "react/prop-types": "off", }, };

  • SurveyJS

    Open-Source JSON Form Builder to Create Dynamic Forms Right in Your App. With SurveyJS form UI libraries, you can build and style forms in a fully-integrated drag & drop form builder, render them in your JS app, and store form submission data in any backend, inc. PHP, ASP.NET Core, and Node.js.

    SurveyJS logo
NOTE: The number of mentions on this list indicates mentions on common posts plus user suggested alternatives. Hence, a higher number means a more popular project.

Suggest a related project

Related posts

  • Setup Eslint + Prettier para padronização de código em React

    1 project | dev.to | 27 May 2024
  • Setup Eslint + Prettier for code standardization in React

    1 project | dev.to | 27 May 2024
  • Converting couple thousands Js/Ts files that contains JSX content to jsx extension

    2 projects | dev.to | 25 May 2024
  • Mastering Code Quality: Setting Up ESLint with Standard JS in TypeScript Projects

    9 projects | dev.to | 5 May 2024
  • What is Storybook Play function?

    2 projects | dev.to | 10 Mar 2024