Skip to content

Commit

Permalink
chore: get the heck lint rules out of here
Browse files Browse the repository at this point in the history
  • Loading branch information
VictorJorgeFGA committed Aug 20, 2024
1 parent 1302b14 commit 809fc8f
Show file tree
Hide file tree
Showing 2 changed files with 5 additions and 1 deletion.
4 changes: 4 additions & 0 deletions .eslintrc.js
Original file line number Diff line number Diff line change
Expand Up @@ -20,5 +20,9 @@ module.exports = {
"@typescript-eslint/explicit-function-return-type": "off",
"@typescript-eslint/explicit-module-boundary-types": "off",
"@typescript-eslint/no-explicit-any": "off",
"@typescript-eslint/no-unused-vars": "off",
"prettier/prettier": "off",
"@typescript-eslint/no-var-requires": "off",
"@typescript-eslint/no-namespace": "off"
},
};
2 changes: 1 addition & 1 deletion src/app/private/pages/editarRotina.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -89,7 +89,7 @@ export default function EditarRotina() {
};

const handleErrors = () => {
let erros: IErrors = {};
const erros: IErrors = {};

if (!titulo) {
erros.titulo = "Campo obrigatório!";
Expand Down

0 comments on commit 809fc8f

Please sign in to comment.