forked from derekpitt/fw-model
-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge pull request #4 from learningmachine/fix/formState-not-declare
- Loading branch information
Showing
17 changed files
with
12,860 additions
and
11,155 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,2 @@ | ||
lib | ||
node_modules |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,40 @@ | ||
{ | ||
"root": true, | ||
"parser": "@typescript-eslint/parser", | ||
"plugins": [ | ||
"@typescript-eslint" | ||
], | ||
"extends": [ | ||
"eslint:recommended", | ||
"plugin:@typescript-eslint/eslint-recommended", | ||
"plugin:@typescript-eslint/recommended" | ||
], | ||
"parserOptions": { | ||
"ecmaVersion": 2019, | ||
"sourceType": "module", | ||
"project": ["./tsconfig.json", "./tsconfig.eslint.json"], | ||
"tsconfigRootDir": "." | ||
}, | ||
"rules": { | ||
"semi": "off", | ||
"@typescript-eslint/semi": ["error", "always"], | ||
"@typescript-eslint/no-empty-function": ["error", { "allow": ["arrowFunctions"] }], | ||
"@typescript-eslint/member-delimiter-style": ["error", { "multiline": { "delimiter": "semi", "requireLast": true }}], | ||
"@typescript-eslint/interface-name-prefix": [0], | ||
"@typescript-eslint/strict-boolean-expressions": [0], | ||
"@typescript-eslint/no-explicit-any": [0], // remove one day, maybe. This is early days so we have some anys. | ||
"@typescript-eslint/restrict-plus-operands": [0], // when this rule functions correctly, we can remove it. It | ||
"@typescript-eslint/explicit-module-boundary-types": [ 1, { "allowArgumentsExplicitlyTypedAsAny": true } ], | ||
// does not pick up the correct type when returning from a JS function | ||
"@typescript-eslint/no-inferrable-types": "off", | ||
"no-useless-escape": [1], | ||
"@typescript-eslint/restrict-template-expressions": [0], | ||
"@typescript-eslint/prefer-nullish-coalescing": [0] | ||
}, | ||
"env": { | ||
"es6": true, | ||
"browser": true, | ||
"node": true, | ||
"jest": true | ||
} | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1 @@ | ||
_ |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1 @@ | ||
npm run lint |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1 @@ | ||
npm run test |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,5 +1,6 @@ | ||
*.yml | ||
*.config.js | ||
.babelrc | ||
.nvmrc | ||
.github/ | ||
.eslintrc.js | ||
|
Oops, something went wrong.