Skip to content
Snippets Groups Projects
.eslintrc.js 294 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': 2,
      },