backsplash-app
Version:
An AI powered wallpaper app.
60 lines (58 loc) • 1.49 kB
Plain Text
{
"env": {
"browser": true,
"es6": true,
"node": true
},
"ignorePatterns": ["node_modules/", "dist/", "build/", "coverage/", "/config"],
"plugins": ["prettier"],
"extends": [
"eslint:recommended",
"plugin:react/recommended",
"plugin:@typescript-eslint/eslint-recommended",
"plugin:@typescript-eslint/recommended",
"plugin:import/electron",
"plugin:import/typescript",
"plugin:import/recommended",
"plugin:react/recommended",
"plugin:jsx-a11y/recommended"
],
"parser": "@typescript-eslint/parser",
"rules": {
"react/prop-types": "off",
"no-debugger": "off",
"@typescript-eslint/no-explicit-any": "off",
"@typescript-eslint/no-non-null-assertion": "off",
"jsx-a11y/no-noninteractive-element-interactions": [
"warn",
{
"handlers": ["onClick", "onMouseDown", "onMouseUp", "onKeyPress", "onKeyDown", "onKeyUp"]
}
],
"import/no-unresolved": "off",
"import/default": "off",
"import/no-named-as-default-member": "off",
"import/no-named-as-default": "off",
"react/react-in-jsx-scope": "off",
"jsx-a11y/anchor-is-valid": "off",
"prettier/prettier": [
"warn",
{},
{
"usePrettierrc": true
}
]
},
"settings": {
"import/resolver": {
"typescript": {},
"node": {
"paths": ["./"],
"extensions": [".js", ".jsx", ".ts", ".tsx"]
}
},
"react": {
"version": "detect"
}
}
}