1
0
Fork 0
mirror of https://github.com/owncast/owncast.git synced 2024-10-28 10:09:39 +01:00
owncast/web/.eslintrc.js

50 lines
1.2 KiB
JavaScript
Raw Normal View History

2020-10-01 03:47:18 +02:00
module.exports = {
env: {
browser: true,
es2021: true,
},
2021-10-14 03:22:18 +02:00
extends: ['plugin:react/recommended', 'airbnb', 'prettier', 'plugin:@next/next/recommended'],
2021-01-31 10:38:20 +01:00
parser: '@typescript-eslint/parser',
2020-10-01 03:47:18 +02:00
parserOptions: {
ecmaFeatures: {
jsx: true,
},
ecmaVersion: 12,
2021-01-31 10:38:20 +01:00
sourceType: 'module',
2020-10-01 03:47:18 +02:00
},
2021-01-31 10:38:20 +01:00
plugins: ['react', 'prettier', '@typescript-eslint'],
2020-10-01 03:47:18 +02:00
rules: {
2021-01-31 10:38:20 +01:00
'prettier/prettier': 'error',
'react/react-in-jsx-scope': 'off',
'react/jsx-filename-extension': [1, { extensions: ['.js', '.jsx', '.tsx'] }],
'react/jsx-props-no-spreading': 'off',
2021-08-30 03:19:18 +02:00
'react/jsx-no-bind': 'off',
2021-08-30 03:19:45 +02:00
2020-10-11 03:48:29 +02:00
'no-unused-vars': 'off',
'@typescript-eslint/no-unused-vars': 'error',
'no-console': 'off',
2021-01-31 10:38:20 +01:00
2020-10-11 03:48:29 +02:00
'no-use-before-define': [0],
'@typescript-eslint/no-use-before-define': [1],
2021-01-31 10:38:20 +01:00
2021-06-16 08:17:22 +02:00
'react/jsx-no-target-blank': [1, { allowReferrer: false, enforceDynamicLinks: 'always' }],
2021-01-31 10:38:20 +01:00
'import/extensions': [
'error',
'ignorePackages',
2020-10-11 03:48:29 +02:00
{
2021-01-31 10:38:20 +01:00
js: 'never',
jsx: 'never',
ts: 'never',
tsx: 'never',
},
],
2020-10-11 03:48:29 +02:00
},
settings: {
2021-01-31 10:38:20 +01:00
'import/resolver': {
node: {
extensions: ['.js', '.jsx', '.ts', '.tsx'],
},
},
2020-10-01 03:47:18 +02:00
},
};