2021-06-18 13:05:06 +02:00
|
|
|
module.exports = {
|
|
|
|
root: true,
|
2021-06-25 14:35:59 +02:00
|
|
|
plugins: ['unused-imports'],
|
2021-06-18 13:05:06 +02:00
|
|
|
extends: [],
|
|
|
|
rules: {
|
|
|
|
'unused-imports/no-unused-imports-ts': 'warn',
|
|
|
|
'no-restricted-imports': [
|
|
|
|
'error',
|
|
|
|
{
|
|
|
|
paths: [
|
|
|
|
{
|
|
|
|
name: 'lodash',
|
|
|
|
message: 'Use lodash-es which is tree-shaking friendly',
|
|
|
|
},
|
|
|
|
],
|
|
|
|
},
|
|
|
|
],
|
|
|
|
},
|
2021-06-25 14:35:59 +02:00
|
|
|
ignorePatterns: ['*.d.ts'],
|
|
|
|
overrides: [
|
|
|
|
{
|
|
|
|
files: ['*.ts', '*.tsx'],
|
|
|
|
parser: '@typescript-eslint/parser',
|
|
|
|
plugins: ['@typescript-eslint'],
|
|
|
|
parserOptions: {
|
2021-06-28 16:37:02 +02:00
|
|
|
project: [
|
2021-06-29 16:06:49 +02:00
|
|
|
'./theatre/tsconfig.json',
|
2021-06-28 16:37:02 +02:00
|
|
|
'./packages/*/tsconfig.json',
|
|
|
|
'./packages/*/devEnv/tsconfig.json',
|
|
|
|
],
|
2021-06-25 14:35:59 +02:00
|
|
|
},
|
|
|
|
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',
|
|
|
|
},
|
|
|
|
},
|
|
|
|
{
|
|
|
|
files: ['*.mjs', '*.js'],
|
|
|
|
parser: 'espree',
|
|
|
|
parserOptions: {
|
|
|
|
sourceType: 'module',
|
|
|
|
ecmaVersion: 2021,
|
|
|
|
},
|
|
|
|
},
|
|
|
|
],
|
2021-06-18 13:05:06 +02:00
|
|
|
}
|