Skip to content

Commit

Permalink
chore: make formStore use option instead of nullable values
Browse files Browse the repository at this point in the history
  • Loading branch information
danielo515 committed Nov 27, 2023
1 parent 8aa7090 commit a2f9020
Show file tree
Hide file tree
Showing 4 changed files with 514 additions and 67 deletions.
8 changes: 5 additions & 3 deletions .eslintrc
Original file line number Diff line number Diff line change
Expand Up @@ -2,11 +2,12 @@
"root": true,
"parser": "@typescript-eslint/parser",
"env": { "node": true },
"plugins": ["@typescript-eslint"],
"plugins": ["@typescript-eslint", "fp-ts", "@stylistic"],
"extends": [
"eslint:recommended",
"plugin:@typescript-eslint/eslint-recommended",
"plugin:@typescript-eslint/recommended"
"plugin:@typescript-eslint/recommended",
"plugin:fp-ts/recommended"
],
"parserOptions": {
"sourceType": "module"
Expand All @@ -17,6 +18,7 @@
"@typescript-eslint/ban-ts-comment": "off",
"no-prototype-builtins": "off",
"@typescript-eslint/no-empty-function": "off",
"arrow-parens": ["error", "always"]
"arrow-parens": ["error", "always"],
"@stylistic/function-call-argument-newline": ["error", "consistent"]
}
}
Loading

0 comments on commit a2f9020

Please sign in to comment.