-
-
Notifications
You must be signed in to change notification settings - Fork 555
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
* fix(types): add support for `React.FunctionalComponent` in `firebaseConnect`/`firestoreConnect` type definitions - @illuminist * fix(firebaseConnect): move hoistStatics to allow static methods to copied - @jeloagnasin * refactor(core): use JS formatted eslint config file - @Shalinit3 * fix(types): add any other values to UserProfile type * fix(examples): update typescript example
- Loading branch information
1 parent
068ad3f
commit 9612d40
Showing
170 changed files
with
42,937 additions
and
30,122 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,35 @@ | ||
module.exports = { | ||
root: true, | ||
|
||
parser: 'babel-eslint', | ||
|
||
extends: ['standard', 'standard-react', 'prettier', 'prettier/react'], | ||
plugins: ['babel', 'react', 'prettier'], | ||
|
||
settings: { | ||
react: { | ||
version: 'detect' | ||
} | ||
}, | ||
|
||
env: { | ||
browser: true, | ||
es6: true | ||
}, | ||
|
||
rules: { | ||
semi: [2, 'never'], | ||
'no-console': 'error', | ||
'prettier/prettier': ['error', { | ||
singleQuote: true, | ||
trailingComma: 'none', | ||
semi: false, | ||
bracketSpacing: true, | ||
jsxBracketSameLine: true, | ||
printWidth: 80, | ||
tabWidth: 2, | ||
useTabs: false | ||
}] | ||
} | ||
}; | ||
|
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
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
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
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
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
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
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
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
Oops, something went wrong.