mirror of
https://github.com/movie-web/native-app.git
synced 2025-09-13 13:23:24 +00:00
fix theme selector not working, add input styling
This commit is contained in:
@@ -41,6 +41,23 @@ const config = {
|
||||
"tamagui-web.css",
|
||||
],
|
||||
reportUnusedDisableDirectives: true,
|
||||
// disable all typescript rules for js files
|
||||
overrides: [
|
||||
{
|
||||
files: ["*.js", "*.cjs", "*.mjs"],
|
||||
rules: {
|
||||
"@typescript-eslint/no-var-requires": "off",
|
||||
"@typescript-eslint/explicit-module-boundary-types": "off",
|
||||
"@typescript-eslint/no-unsafe-assignment": "off",
|
||||
"@typescript-eslint/no-unsafe-member-access": "off",
|
||||
"@typescript-eslint/no-unsafe-call": "off",
|
||||
"@typescript-eslint/no-unsafe-return": "off",
|
||||
"@typescript-eslint/no-floating-promises": "off",
|
||||
"@typescript-eslint/require-await": "off",
|
||||
"@typescript-eslint/no-misused-promises": "off",
|
||||
},
|
||||
},
|
||||
],
|
||||
};
|
||||
|
||||
module.exports = config;
|
||||
|
Reference in New Issue
Block a user