-
-
Notifications
You must be signed in to change notification settings - Fork 143
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 #305 from open-source-labs/dev
Dev
- Loading branch information
Showing
188 changed files
with
21,339 additions
and
16,007 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,3 @@ | ||
/dist | ||
/build | ||
/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 |
---|---|---|
@@ -1,77 +1,189 @@ | ||
module.exports = { | ||
env: { | ||
es6: true, | ||
jest: true, | ||
node: true, | ||
}, | ||
extends: [ | ||
"airbnb", | ||
"prettier", | ||
"prettier/@typescript-eslint", | ||
"prettier/react", | ||
], | ||
globals: { | ||
Atomics: "readonly", | ||
SharedArrayBuffer: "readonly", | ||
}, | ||
parser: "babel-eslint", | ||
|
||
parserOptions: { | ||
ecmaVersion: 2020, | ||
ecmaFeatures: { | ||
jsx: true, | ||
classes: true, | ||
}, | ||
}, | ||
plugins: ["react", "jsx-a11y", "import", "jest", "react-hooks"], | ||
rules: { | ||
"arrow-body-style": 0, | ||
"class-methods-use-this": 0, | ||
"consistent-return": 0, | ||
"comma-dangle": 0, | ||
"dot-notation": 0, | ||
"func-names": 0, | ||
"guard-for-in": 0, | ||
"import/extensions": 0, | ||
"import/no-extraneous-dependencies": 0, | ||
"import/no-unresolved": 0, | ||
"import/prefer-default-export": 0, | ||
"max-len": 0, | ||
"no-alert": 0, | ||
"no-console": 0, | ||
"no-param-reassign": 0, | ||
"no-plusplus": 0, | ||
"no-restricted-globals": 1, | ||
"no-restricted-syntax": 0, | ||
"no-shadow": 0, | ||
"no-undef": 0, | ||
"no-unused-vars": 0, | ||
"no-use-before-define": 0, | ||
"no-useless-constructor": 0, | ||
"no-underscore-dangle": 0, | ||
"no-unused-expressions": 0, | ||
"no-return-assign": 0, | ||
"prefer-const": 1, | ||
"prefer-destructuring": 0, | ||
"prefer-template": 0, | ||
"react/button-has-type": 0, | ||
"react/destructuring-assignment": 0, | ||
"react/forbid-prop-types": 0, | ||
"react/jsx-filename-extension": 0, | ||
"react/jsx-no-duplicate-props": 0, | ||
"react/no-access-state-in-setstate": 0, | ||
"react/no-array-index-key": 0, | ||
"react/no-did-update-set-state": 0, | ||
"react/no-unused-state": 0, | ||
"react/prefer-stateless-function": 0, | ||
"react/sort-comp": [ | ||
2, | ||
{ | ||
order: ["lifecycle", "everything-else", "rendering"], | ||
}, | ||
], | ||
"react/prop-types": 0, | ||
"spaced-comment": 0, | ||
strict: 0, | ||
}, | ||
}; | ||
module.exports = { | ||
// Global ESLint Settings | ||
// ================================= | ||
root: true, | ||
env: { | ||
browser: true, | ||
es6: true, | ||
node: true, | ||
jest: true, | ||
}, | ||
globals: { | ||
Atomics: 'readonly', | ||
SharedArrayBuffer: 'readonly', | ||
}, | ||
ignorePatterns: ['cypress/*'], | ||
settings: { | ||
react: { | ||
version: 'detect', | ||
}, | ||
'import/resolver': { | ||
typescript: {}, | ||
'babel-module': { | ||
root: ['.'], | ||
alias: { | ||
'~/static': './public/static/', | ||
'~': './', | ||
}, | ||
}, | ||
}, | ||
}, | ||
|
||
// =========================================== | ||
// Set up ESLint for .js / .jsx files | ||
// =========================================== | ||
// .js / .jsx uses babel-eslint | ||
parser: 'babel-eslint', | ||
parserOptions: { | ||
ecmaVersion: 2020, | ||
sourceType: 'module', | ||
ecmaFeatures: { | ||
jsx: true, | ||
}, | ||
}, | ||
|
||
// Plugins | ||
// ================================= | ||
plugins: ['react', 'jsx-a11y', 'import', 'jest', 'react-hooks', 'prettier'], | ||
|
||
// Extend Other Configs | ||
// ================================= | ||
extends: [ | ||
'airbnb', | ||
'eslint:recommended', | ||
'plugin:import/errors', | ||
'plugin:import/warnings', | ||
'plugin:react/recommended', | ||
// Disable rules that conflict with Prettier | ||
// Prettier must be last to override other configs | ||
'prettier', | ||
], | ||
rules: { | ||
'react/function-component-definition': 0, | ||
'react/boolean-prop-naming': 0, | ||
'react/prop-types': 0, | ||
'react-hooks/exhaustive-deps': 1, | ||
'react/react-in-jsx-scope': 0, | ||
'react/display-name': [0], | ||
// from old | ||
'arrow-body-style': 0, | ||
'class-methods-use-this': 0, | ||
'consistent-return': 0, | ||
'comma-dangle': 0, | ||
'dot-notation': 0, | ||
'func-names': 0, | ||
'guard-for-in': 0, | ||
'import/extensions': 0, | ||
'import/no-extraneous-dependencies': 0, | ||
'import/no-unresolved': 0, | ||
'import/prefer-default-export': 0, | ||
'max-len': 0, | ||
'no-alert': 0, | ||
'no-console': 0, | ||
'no-param-reassign': 0, | ||
'no-plusplus': 0, | ||
'no-restricted-globals': 1, | ||
'no-restricted-syntax': 0, | ||
'no-shadow': 0, | ||
'no-undef': 0, | ||
'no-unused-vars': 0, | ||
'no-use-before-define': 0, | ||
'no-useless-constructor': 0, | ||
'no-underscore-dangle': 0, | ||
'no-unused-expressions': 0, | ||
'no-return-assign': 0, | ||
'prefer-const': 1, | ||
'prefer-destructuring': 0, | ||
'prefer-template': 0, | ||
'react/button-has-type': 0, | ||
'react/destructuring-assignment': 0, | ||
'react/forbid-prop-types': 0, | ||
'react/jsx-filename-extension': 0, | ||
'react/jsx-no-duplicate-props': 0, | ||
'react/no-access-state-in-setstate': 0, | ||
'react/no-array-index-key': 0, | ||
'react/no-did-update-set-state': 0, | ||
'react/no-unused-state': 0, | ||
'react/prefer-stateless-function': 0, | ||
'react/sort-comp': [ | ||
2, | ||
{ | ||
order: ['lifecycle', 'everything-else', 'rendering'], | ||
}, | ||
], | ||
'spaced-comment': 0, | ||
strict: 0, | ||
}, | ||
|
||
// ================================= | ||
// Overrides for Specific Files | ||
// ================================= | ||
overrides: [ | ||
// Match TypeScript Files | ||
// ================================= | ||
{ | ||
files: ['**/*.{ts,tsx}'], | ||
|
||
// Global ESLint Settings | ||
// ================================= | ||
env: { | ||
jest: true, | ||
}, | ||
globals: { | ||
React: 'writable', | ||
}, | ||
settings: { | ||
'import/parsers': { | ||
'@typescript-eslint/parser': ['.ts', '.tsx'], | ||
}, | ||
'import/resolver': { | ||
typescript: { | ||
project: './tsconfig.json', | ||
}, | ||
}, | ||
}, | ||
|
||
// Parser Settings | ||
// ================================= | ||
// allow ESLint to understand TypeScript syntax | ||
// https://github.com/iamturns/eslint-config-airbnb-typescript/blob/master/lib/shared.js#L10 | ||
parser: '@typescript-eslint/parser', | ||
parserOptions: { | ||
// Lint with Type Information | ||
// https://github.com/typescript-eslint/typescript-eslint/blob/master/docs/getting-started/linting/TYPED_LINTING.md | ||
tsconfigRootDir: __dirname, | ||
project: './tsconfig.json', | ||
}, | ||
|
||
// Plugins | ||
// ================================= | ||
plugins: ['jsx-a11y'], | ||
|
||
// Extend Other Configs | ||
// ================================= | ||
extends: [ | ||
'eslint:recommended', | ||
'plugin:@typescript-eslint/eslint-recommended', | ||
'plugin:@typescript-eslint/recommended', | ||
'plugin:@typescript-eslint/recommended-requiring-type-checking', | ||
'plugin:react/recommended', | ||
'plugin:import/errors', | ||
'plugin:import/warnings', | ||
'plugin:import/typescript', | ||
'prettier', | ||
], | ||
rules: { | ||
'react/react-in-jsx-scope': 'off', | ||
'react/prop-types': [0], | ||
// temp allowing during TS migration | ||
'@typescript-eslint/ban-ts-comment': [ | ||
'error', | ||
{ | ||
'ts-ignore': 'allow-with-description', | ||
minimumDescriptionLength: 4, | ||
}, | ||
], | ||
}, | ||
}, | ||
], | ||
}; |
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,32 +1,33 @@ | ||
--- | ||
name: Bug report | ||
about: Create a report to help us improve | ||
title: '' | ||
labels: '' | ||
assignees: '' | ||
|
||
--- | ||
|
||
**Describe the bug** | ||
A clear and concise description of what the bug is. | ||
|
||
**To Reproduce** | ||
Steps to reproduce the behavior: | ||
1. Go to '...' | ||
2. Click on '....' | ||
3. Scroll down to '....' | ||
4. See error | ||
|
||
**Expected behavior** | ||
A clear and concise description of what you expected to happen. | ||
|
||
**Screenshots** | ||
If applicable, add screenshots to help explain your problem. | ||
|
||
**Desktop (please complete the following information):** | ||
- OS: [e.g. iOS] | ||
- Browser [e.g. chrome, safari] | ||
- Version [e.g. 22] | ||
|
||
**Additional context** | ||
Add any other context about the problem here. | ||
--- | ||
name: Bug report | ||
about: Create a report to help us improve | ||
title: '' | ||
labels: '' | ||
assignees: '' | ||
--- | ||
|
||
**Describe the bug** | ||
A clear and concise description of what the bug is. | ||
|
||
**To Reproduce** | ||
Steps to reproduce the behavior: | ||
|
||
1. Go to '...' | ||
2. Click on '....' | ||
3. Scroll down to '....' | ||
4. See error | ||
|
||
**Expected behavior** | ||
A clear and concise description of what you expected to happen. | ||
|
||
**Screenshots** | ||
If applicable, add screenshots to help explain your problem. | ||
|
||
**Desktop (please complete the following information):** | ||
|
||
- OS: [e.g. iOS] | ||
- Browser [e.g. chrome, safari] | ||
- Version [e.g. 22] | ||
|
||
**Additional context** | ||
Add any other context about the problem here. |
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,20 +1,19 @@ | ||
--- | ||
name: Feature request | ||
about: Suggest an idea for this project | ||
title: '' | ||
labels: '' | ||
assignees: '' | ||
|
||
--- | ||
|
||
**Is your feature request related to a problem? Please describe.** | ||
A clear and concise description of what the problem is. Ex. I'm always frustrated when [...] | ||
|
||
**Describe the solution you'd like** | ||
A clear and concise description of what you want to happen. | ||
|
||
**Describe alternatives you've considered** | ||
A clear and concise description of any alternative solutions or features you've considered. | ||
|
||
**Additional context** | ||
Add any other context or screenshots about the feature request here. | ||
--- | ||
name: Feature request | ||
about: Suggest an idea for this project | ||
title: '' | ||
labels: '' | ||
assignees: '' | ||
--- | ||
|
||
**Is your feature request related to a problem? Please describe.** | ||
A clear and concise description of what the problem is. Ex. I'm always frustrated when [...] | ||
|
||
**Describe the solution you'd like** | ||
A clear and concise description of what you want to happen. | ||
|
||
**Describe alternatives you've considered** | ||
A clear and concise description of any alternative solutions or features you've considered. | ||
|
||
**Additional context** | ||
Add any other context or screenshots about the feature request here. |
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.