-module.exports = {root:true,env:{browser:true,es2020:true},extends:["eslint:recommended","plugin:@typescript-eslint/recommended","plugin:react-hooks/recommended"],ignorePatterns:["dist",".eslintrc.cjs"],parser:"@typescript-eslint/parser",plugins:["react-refresh","@typescript-eslint"],rules:{"react-refresh/only-export-components":["warn",{allowConstantExport:true}],"@typescript-eslint/indent":["error",2],"@typescript-eslint/semi":["error","always"],"@typescript-eslint/member-delimiter-style":["error",{multiline:{delimiter:"semi",requireLast:true},singleline:{delimiter:"semi",requireLast:false}}],"@typescript-eslint/quotes":["error","single"],"@typescript-eslint/comma-dangle":["error","always-multiline"],"linebreak-style":["error","windows"],"space-before-function-paren":"off","@typescript-eslint/space-before-function-paren":"off","@typescript-eslint/func-call-spacing":"off","no-spaced-func":"off","@typescript-eslint/method-signature-style":"off","no-unused-vars":"off","@typescript-eslint/no-unused-vars":["error",{"argsIgnorePattern":"^_"}]}}
0 commit comments