Skip to content
Snippets Groups Projects
.eslintrc.js 191 B
Newer Older
  • Learn to ignore specific revisions
  • module.exports = {
      extends: ["airbnb-typescript"],
    
      parserOptions: {
        project: "./tsconfig.json",
        ecmaFeatures: {
          jsx: true,
        },
      },
    
      env: {
        browser: true,
      },
    };