UNPKG

@adminjs/prisma

Version:
52 lines (51 loc) 1.16 kB
module.exports = { env: { browser: true, es2020: true, }, extends: [ 'airbnb', 'plugin:react/recommended', 'plugin:@typescript-eslint/recommended', ], parser: '@typescript-eslint/parser', parserOptions: { ecmaFeatures: { jsx: true, }, ecmaVersion: 20, sourceType: 'module', }, plugins: ['react', '@typescript-eslint'], rules: { semi: 'off', 'max-len': ['error', 120], 'no-unused-vars': 'off', 'import/prefer-default-export': 'off', 'guard-for-in': 'off', 'no-restricted-syntax': 'off', 'no-underscore-dangle': 'off', 'import/extensions': 'off', 'import/no-unresolved': 'off', 'react/jsx-filename-extension': 'off', indent: ['error', 2], 'linebreak-style': ['error', 'unix'], 'object-curly-newline': 'off', '@typescript-eslint/no-explicit-any': 'off', }, overrides: [ { files: ['*.tsx'], rules: { 'react/prop-types': 'off', 'react/jsx-props-no-spreading': 'off', }, }, { files: ['*.spec.ts'], rules: { 'import/no-extraneous-dependencies': 'off', }, }, ], };