All Downloads are FREE. Search and download functionalities are using the official Maven repository.

generator.client.react..eslintrc.cjs Maven / Gradle / Ivy

There is a newer version: 1.18.1
Show newest version
module.exports = {
  env: {
    node: true,
  },
  extends: ['eslint:recommended', 'plugin:react/recommended', 'plugin:@typescript-eslint/recommended'],
  parserOptions: {
    ecmaFeatures: {
      jsx: true,
    },
    ecmaVersion: 2018,
    sourceType: 'module',
  },
  plugins: ['react'],
  ignorePatterns: ['node_modules/'],
  rules: {
    'react/react-in-jsx-scope': 'off',
  },
  settings: {
    react: {
      version: 'detect',
    },
  },
};




© 2015 - 2024 Weber Informatics LLC | Privacy Policy