Skip to content
Snippets Groups Projects
.eslintrc.js 360 B
Newer Older
  • Learn to ignore specific revisions
  • module.exports = {
    
    Chif Gergő's avatar
    Chif Gergő committed
      extends: ['airbnb-typescript'],
    
    Chif Gergő's avatar
    Chif Gergő committed
        project: './tsconfig.json',
    
        ecmaFeatures: {
          jsx: true,
        },
      },
    
      env: {
        browser: true,
      },
    
    Chif Gergő's avatar
    Chif Gergő committed
    
      rules: {
        'react/prop-types': 0,
    
        '@typescript-eslint/explicit-function-return-type': 1,
    
        'object-curly-newline': 0,
    
        'implicit-arrow-linebreak': 0,
    
    Chif Gergő's avatar
    Chif Gergő committed
      },