2022-02-23 22:42:09 +01:00
|
|
|
/**
|
|
|
|
* @remarks
|
|
|
|
* Notes on plugins we _don't_ use:
|
|
|
|
*
|
|
|
|
* ## plugin:react-hooks
|
|
|
|
* We don't use the react hooks plugin because it disallows valid use-cases
|
|
|
|
* such as this:
|
|
|
|
*
|
|
|
|
* ```ts
|
|
|
|
* export default function useValToAtom<S>(val: S): Atom<S> {
|
|
|
|
* const atom = useMemo(() => {
|
|
|
|
* return new Atom(val)
|
|
|
|
* }, []) // <-- we don't _need_ to include `val` here, but the lint rule will require it
|
|
|
|
*
|
|
|
|
* useLayoutEffect(() => {
|
|
|
|
* atom.setState(val)
|
|
|
|
* }, [val]) // <-- we also know `atom` will never change, but the lint rule doesn't
|
|
|
|
*
|
|
|
|
* return atom
|
|
|
|
* ```
|
2022-07-15 13:49:41 +02:00
|
|
|
*
|
|
|
|
* @type {import("eslint").Linter.Config}
|
2022-02-23 22:42:09 +01:00
|
|
|
*/
|
2021-06-18 13:05:06 +02:00
|
|
|
module.exports = {
|
|
|
|
root: true,
|
2023-08-03 21:02:05 +02:00
|
|
|
plugins: ['unused-imports', 'eslint-plugin-tsdoc', 'import', 'react'],
|
|
|
|
settings: {
|
|
|
|
react: {
|
|
|
|
version: '18.2',
|
|
|
|
},
|
|
|
|
},
|
2022-02-23 22:42:09 +01:00
|
|
|
extends: [],
|
2021-06-18 13:05:06 +02:00
|
|
|
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',
|
2023-08-03 11:44:54 +02:00
|
|
|
'no-debugger': 'error',
|
2023-08-03 21:02:05 +02:00
|
|
|
'react/no-deprecated': 'error',
|
2023-08-03 11:44:54 +02:00
|
|
|
|
2021-06-18 13:05:06 +02:00
|
|
|
'no-restricted-imports': [
|
|
|
|
'error',
|
|
|
|
{
|
|
|
|
paths: [
|
|
|
|
{
|
|
|
|
name: 'lodash',
|
|
|
|
message: 'Use lodash-es which is tree-shaking friendly',
|
|
|
|
},
|
|
|
|
],
|
|
|
|
},
|
|
|
|
],
|
|
|
|
},
|
2023-07-28 19:49:52 +02:00
|
|
|
ignorePatterns: ['*.d.ts', '*.ignore.ts', 'compat-tests/*'],
|
2021-06-25 14:35:59 +02:00
|
|
|
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-08-06 12:00:19 +02:00
|
|
|
'./examples/*/tsconfig.json',
|
2022-02-24 17:04:56 +01:00
|
|
|
'./devEnv/tsconfig.json',
|
2023-08-06 10:15:37 +02:00
|
|
|
'./compat-tests/tsconfig.json',
|
|
|
|
'./scripts/tsconfig.json',
|
2021-06-28 16:37:02 +02:00
|
|
|
],
|
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',
|
2023-08-03 10:46:36 +02:00
|
|
|
'@typescript-eslint/no-floating-promises': 'warn',
|
2021-06-25 14:35:59 +02:00
|
|
|
},
|
|
|
|
},
|
|
|
|
{
|
2021-08-07 22:30:29 +02:00
|
|
|
plugins: ['react'],
|
2021-06-25 14:35:59 +02:00
|
|
|
files: ['*.mjs', '*.js'],
|
2021-08-07 22:30:29 +02:00
|
|
|
rules: {
|
|
|
|
'react/jsx-uses-react': 'error',
|
|
|
|
'react/jsx-uses-vars': 'error',
|
2022-06-09 19:05:25 +02:00
|
|
|
'tsdoc/syntax': 'off',
|
2021-08-07 22:30:29 +02:00
|
|
|
},
|
2021-06-25 14:35:59 +02:00
|
|
|
parser: 'espree',
|
|
|
|
parserOptions: {
|
|
|
|
sourceType: 'module',
|
|
|
|
ecmaVersion: 2021,
|
2021-08-07 20:54:28 +02:00
|
|
|
ecmaFeatures: {
|
|
|
|
jsx: true,
|
|
|
|
},
|
2021-06-25 14:35:59 +02:00
|
|
|
},
|
|
|
|
},
|
2023-08-03 20:42:40 +02:00
|
|
|
{
|
|
|
|
files: [
|
|
|
|
`packages/*/**/*.ts`,
|
|
|
|
`packages/*/**/*.tsx`,
|
|
|
|
`packages/*/**/*.js`,
|
|
|
|
],
|
|
|
|
rules: {
|
|
|
|
'import/no-extraneous-dependencies': [
|
|
|
|
'error',
|
|
|
|
// {optionalDependencies: false, peerDependencies: false},
|
|
|
|
],
|
|
|
|
},
|
|
|
|
},
|
2021-06-25 14:35:59 +02:00
|
|
|
],
|
2021-06-18 13:05:06 +02:00
|
|
|
}
|