theatre/.eslintrc.js

65 lines
1.5 KiB
JavaScript
Raw Normal View History

2021-06-18 13:05:06 +02:00
module.exports = {
root: true,
2021-10-02 13:48:02 +02:00
plugins: ['unused-imports', 'eslint-plugin-tsdoc'],
2021-06-18 13:05:06 +02:00
extends: [],
rules: {
2021-08-07 22:30:29 +02:00
'unused-imports/no-unused-imports': 'warn',
2021-10-02 13:48:02 +02:00
'tsdoc/syntax': 'warn',
2021-06-18 13:05:06 +02:00
'no-restricted-imports': [
'error',
{
paths: [
{
name: 'lodash',
message: 'Use lodash-es which is tree-shaking friendly',
},
],
},
],
},
2021-10-02 13:48:02 +02:00
ignorePatterns: ['*.d.ts', '*.ignore.ts'],
overrides: [
{
files: ['*.ts', '*.tsx'],
parser: '@typescript-eslint/parser',
plugins: ['@typescript-eslint'],
parserOptions: {
project: [
2021-06-29 16:06:49 +02:00
'./theatre/tsconfig.json',
'./packages/*/tsconfig.json',
'./packages/*/devEnv/tsconfig.json',
2021-08-06 12:00:19 +02:00
'./examples/*/tsconfig.json',
],
},
rules: {
'@typescript-eslint/await-thenable': 'warn',
'@typescript-eslint/no-throw-literal': 'warn',
'@typescript-eslint/switch-exhaustiveness-check': 'error',
'@typescript-eslint/consistent-type-imports': [
'warn',
{
prefer: 'type-imports',
},
],
'@typescript-eslint/no-unused-vars': 'off',
},
},
{
2021-08-07 22:30:29 +02:00
plugins: ['react'],
files: ['*.mjs', '*.js'],
2021-08-07 22:30:29 +02:00
rules: {
'react/jsx-uses-react': 'error',
'react/jsx-uses-vars': 'error',
},
parser: 'espree',
parserOptions: {
sourceType: 'module',
ecmaVersion: 2021,
2021-08-07 20:54:28 +02:00
ecmaFeatures: {
jsx: true,
},
},
},
],
2021-06-18 13:05:06 +02:00
}