Skip to content

Commit eac0970

Browse files
authored
Merge pull request #176 from open-source-labs/staging
Staging
2 parents 1c5e8a6 + f396ec6 commit eac0970

File tree

376 files changed

+60088
-9429
lines changed

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

376 files changed

+60088
-9429
lines changed

.eslintrc

Lines changed: 10 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,11 +1,18 @@
11
{
2-
"extends": ["airbnb", "plugin:jest/recommended"],
2+
"extends": [
3+
"airbnb",
4+
"plugin:jest/recommended",
5+
"plugin:@typescript-eslint/eslint-recommended",
6+
"plugin:@typescript-eslint/recommended"],
37
"root": true,
4-
"plugins": ["jest", "react"],
8+
"plugins": ["jest", "react", "react-hooks", "@typescript-eslint"],
59
"rules": {
610
"arrow-parens": [2, "as-needed"],
711
"import/no-unresolved": "off",
8-
"import/extensions": "off"
12+
"import/extensions": "off",
13+
"react-hooks/rules-of-hooks": "error", // Checks rules of Hooks
14+
"react-hooks/exhaustive-deps": "warn", // Checks effect dependencies
15+
"react/jsx-filename-extension": [0]
916
},
1017
"env": {
1118
"es6": true,

.gitignore

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -10,3 +10,4 @@ src/extension/build.crx
1010
src/extension/build.pem
1111
bower_components
1212
sandboxes/manual-tests/NextJS/.next
13+
.vscode

.gitmodules

Whitespace-only changes.

.vscode/settings.json

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,4 @@
1+
{
2+
"eslint.enable": true,
3+
"git.ignoreLimitWarning": true
4+
}

MyMovie.gif

1.49 MB
Loading

ShortMovie.gif

446 KB
Loading

babel.config.js

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -10,4 +10,5 @@ module.exports = {
1010
],
1111
'@babel/preset-react',
1212
],
13+
1314
};

0 commit comments

Comments
 (0)