-
Notifications
You must be signed in to change notification settings - Fork 30
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Update deps to latest, migrate to jest (#162)
* [1/x] update deps * [2/x] update deps * [3/x] Port tests to jest * [4/x] Port tests to jest * [5/x] Port tests to jest * [6/x] Port tests to jest * [7/x] Port tests to jest * [8/x] Port tests to jest * [9/x] Port tests to jest * [10/x] Port tests to jest * [11/x] Port tests to jest * [12/x] Port tests to jest * [13/x] Port tests to jest * [14/x] npm test works * cleanup, fix flow tests * fix docs, benchmarks * update ci
- Loading branch information
Showing
74 changed files
with
18,993 additions
and
10,629 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 |
---|---|---|
@@ -1,38 +1,35 @@ | ||
module.exports = { | ||
env: { | ||
browser: true, | ||
es6: true | ||
es6: true, | ||
}, | ||
extends: [ | ||
'plugin:react/recommended', | ||
'prettier', | ||
'standard' | ||
], | ||
extends: ['plugin:react/recommended', 'standard'], | ||
parser: '@typescript-eslint/parser', | ||
parserOptions: { | ||
ecmaFeatures: { | ||
jsx: true | ||
jsx: true, | ||
}, | ||
ecmaVersion: 2018, | ||
sourceType: 'module' | ||
sourceType: 'module', | ||
}, | ||
plugins: [ | ||
'prettier', | ||
'react', | ||
'@typescript-eslint' | ||
], | ||
plugins: ['react', '@typescript-eslint'], | ||
settings: { | ||
react: { | ||
version: 'detect' | ||
} | ||
version: 'detect', | ||
}, | ||
}, | ||
rules: { | ||
'camelcase': 'off', | ||
camelcase: 'off', | ||
'comma-dangle': 'off', | ||
'dot-notation': 'off', | ||
'lines-between-class-members': 'off', | ||
'multiline-ternary': 'off', | ||
'no-redeclare': 'off', | ||
'no-unused-vars': 'off', | ||
'no-useless-constructor': 'off', | ||
'object-curly-spacing': 'off', | ||
'prefer-const': 'off', | ||
'prettier/prettier': 'error', | ||
'space-before-function-paren': 'off' | ||
} | ||
'react/display-name': 'off', | ||
'space-before-function-paren': 'off', | ||
}, | ||
} |
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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,5 +1,5 @@ | ||
The MIT License (MIT) | ||
Copyright (c) 2017-2018 Boris Cherny <[email protected]> | ||
Copyright (c) 2017-2024 Boris Cherny <[email protected]> | ||
|
||
Permission is hereby granted, free of charge, to any person obtaining a copy of this software and associated documentation files (the "Software"), to deal in the Software without restriction, including without limitation the rights to use, copy, modify, merge, publish, distribute, sublicense, and/or sell copies of the Software, and to permit persons to whom the Software is furnished to do so, subject to the following conditions: | ||
|
||
|
Oops, something went wrong.