mirror of
https://github.com/owncast/owncast.git
synced 2024-11-21 20:28:15 +03:00
e50b23d081
* chore(js): be stricter about dead code warnings * chore(js): remove dead code and unused exports * rebase * chore: remove unused files * chore(deps): remove unused prop-types dep * chore(js): remove unused function * chore(deps): remove + check unused deps * chore(js): remove unused exports. Closes #3036
87 lines
2 KiB
JavaScript
87 lines
2 KiB
JavaScript
module.exports = {
|
|
env: {
|
|
browser: true,
|
|
es2021: true,
|
|
jest: true,
|
|
},
|
|
extends: [
|
|
'plugin:react/recommended',
|
|
'airbnb',
|
|
'prettier',
|
|
'plugin:@next/next/recommended',
|
|
'plugin:storybook/recommended',
|
|
],
|
|
parser: '@typescript-eslint/parser',
|
|
parserOptions: {
|
|
ecmaFeatures: {
|
|
jsx: true,
|
|
},
|
|
ecmaVersion: 12,
|
|
sourceType: 'module',
|
|
},
|
|
plugins: ['react', 'prettier', '@typescript-eslint', 'import'],
|
|
ignorePatterns: ['!./storybook/**'],
|
|
rules: {
|
|
'prettier/prettier': 'error',
|
|
'react/destructuring-assignment': 'off',
|
|
'react/prop-types': 0,
|
|
'react/react-in-jsx-scope': 'off',
|
|
'react/require-default-props': 'off',
|
|
'react/jsx-filename-extension': [
|
|
1,
|
|
{
|
|
extensions: ['.js', '.jsx', '.tsx'],
|
|
},
|
|
],
|
|
'react/jsx-props-no-spreading': 'off',
|
|
'react/jsx-no-bind': 'off',
|
|
'react/function-component-definition': [
|
|
'warn',
|
|
{
|
|
namedComponents: 'arrow-function',
|
|
unnamedComponents: 'arrow-function',
|
|
},
|
|
],
|
|
'@next/next/no-img-element': 'off',
|
|
'no-unused-vars': 'off',
|
|
'@typescript-eslint/no-unused-vars': 'error',
|
|
'no-console': 'off',
|
|
'no-use-before-define': [0],
|
|
'@typescript-eslint/no-use-before-define': [0],
|
|
'no-shadow': 'off',
|
|
'@typescript-eslint/no-shadow': ['error'],
|
|
'no-restricted-exports': 'off',
|
|
'react/jsx-no-target-blank': [
|
|
1,
|
|
{
|
|
allowReferrer: false,
|
|
enforceDynamicLinks: 'always',
|
|
},
|
|
],
|
|
'import/extensions': [
|
|
'error',
|
|
'ignorePackages',
|
|
{
|
|
js: 'never',
|
|
jsx: 'never',
|
|
ts: 'never',
|
|
tsx: 'never',
|
|
},
|
|
],
|
|
'import/no-extraneous-dependencies': [
|
|
'error',
|
|
{
|
|
devDependencies: ['**/*.stories.*', '**/.storybook/**/*.*'],
|
|
peerDependencies: true,
|
|
},
|
|
],
|
|
'import/no-unused-modules': [1, { unusedExports: true }],
|
|
},
|
|
settings: {
|
|
'import/resolver': {
|
|
node: {
|
|
extensions: ['.js', '.jsx', '.ts', '.tsx'],
|
|
},
|
|
},
|
|
},
|
|
};
|