1 2 3 4 5 6 7 8 9 10 11 12 13 14 15
{ "parser": "@typescript-eslint/parser", "extends": [ "airbnb-typescript", "plugin:@typescript-eslint/recommended" ], "parserOptions": { "project": "./tsconfig.json" }, "ignorePatterns": "dist/", "rules": { "jsx-quotes": ["error", "prefer-double"], "quotes": ["error", "single"] } }