2017-06-11 08:32:59 +00:00
|
|
|
module.exports = {
|
2020-10-12 09:30:35 +00:00
|
|
|
root: true,
|
|
|
|
env: {
|
|
|
|
node: true,
|
|
|
|
es6: true,
|
|
|
|
},
|
2017-06-11 08:32:59 +00:00
|
|
|
|
2020-10-12 09:30:35 +00:00
|
|
|
parser: '@typescript-eslint/parser',
|
2020-04-09 05:56:25 +00:00
|
|
|
|
2022-06-14 11:16:21 +00:00
|
|
|
plugins: ['mocha', '@typescript-eslint', 'import'],
|
2020-05-07 10:54:55 +00:00
|
|
|
|
2020-10-12 09:30:35 +00:00
|
|
|
extends: ['plugin:prettier/recommended'],
|
2017-06-11 08:32:59 +00:00
|
|
|
|
2020-10-12 09:30:35 +00:00
|
|
|
rules: {
|
2022-06-14 11:55:35 +00:00
|
|
|
// Brackets keep code readable.
|
|
|
|
curly: [2, 'all'],
|
2022-06-15 10:42:21 +00:00
|
|
|
// Brackets keep code readable and `return` intentions clear.
|
|
|
|
'arrow-body-style': ['error', 'always'],
|
2020-10-12 09:30:35 +00:00
|
|
|
// Error if files are not formatted with Prettier correctly.
|
|
|
|
'prettier/prettier': 2,
|
|
|
|
// syntax preferences
|
|
|
|
'spaced-comment': [
|
|
|
|
2,
|
|
|
|
'always',
|
|
|
|
{
|
|
|
|
markers: ['*'],
|
|
|
|
},
|
|
|
|
],
|
|
|
|
eqeqeq: [2],
|
|
|
|
'accessor-pairs': [
|
|
|
|
2,
|
|
|
|
{
|
|
|
|
getWithoutSet: false,
|
|
|
|
setWithoutGet: false,
|
|
|
|
},
|
|
|
|
],
|
|
|
|
'new-parens': 2,
|
|
|
|
'func-call-spacing': 2,
|
|
|
|
'prefer-const': 2,
|
2017-06-11 08:32:59 +00:00
|
|
|
|
2020-10-12 09:30:35 +00:00
|
|
|
'max-len': [
|
|
|
|
2,
|
|
|
|
{
|
|
|
|
/* this setting doesn't impact things as we use Prettier to format
|
|
|
|
* our code and hence dictate the line length.
|
|
|
|
* Prettier aims for 80 but sometimes makes the decision to go just
|
|
|
|
* over 80 chars as it decides that's better than wrapping. ESLint's
|
|
|
|
* rule defaults to 80 but therefore conflicts with Prettier. So we
|
|
|
|
* set it to something far higher than Prettier would allow to avoid
|
|
|
|
* it causing issues and conflicting with Prettier.
|
|
|
|
*/
|
|
|
|
code: 200,
|
|
|
|
comments: 90,
|
|
|
|
ignoreTemplateLiterals: true,
|
|
|
|
ignoreUrls: true,
|
|
|
|
ignoreStrings: true,
|
|
|
|
ignoreRegExpLiterals: true,
|
|
|
|
},
|
|
|
|
],
|
|
|
|
// anti-patterns
|
|
|
|
'no-var': 2,
|
|
|
|
'no-with': 2,
|
|
|
|
'no-multi-str': 2,
|
|
|
|
'no-caller': 2,
|
|
|
|
'no-implied-eval': 2,
|
|
|
|
'no-labels': 2,
|
|
|
|
'no-new-object': 2,
|
|
|
|
'no-octal-escape': 2,
|
|
|
|
'no-self-compare': 2,
|
|
|
|
'no-shadow-restricted-names': 2,
|
|
|
|
'no-cond-assign': 2,
|
|
|
|
'no-debugger': 2,
|
|
|
|
'no-dupe-keys': 2,
|
|
|
|
'no-duplicate-case': 2,
|
|
|
|
'no-empty-character-class': 2,
|
|
|
|
'no-unreachable': 2,
|
|
|
|
'no-unsafe-negation': 2,
|
|
|
|
radix: 2,
|
|
|
|
'valid-typeof': 2,
|
|
|
|
'no-unused-vars': [
|
|
|
|
2,
|
|
|
|
{
|
|
|
|
args: 'none',
|
|
|
|
vars: 'local',
|
|
|
|
varsIgnorePattern:
|
|
|
|
'([fx]?describe|[fx]?it|beforeAll|beforeEach|afterAll|afterEach)',
|
|
|
|
},
|
|
|
|
],
|
|
|
|
'no-implicit-globals': [2],
|
2017-06-11 08:32:59 +00:00
|
|
|
|
2020-10-12 09:30:35 +00:00
|
|
|
// es2015 features
|
|
|
|
'require-yield': 2,
|
|
|
|
'template-curly-spacing': [2, 'never'],
|
2020-04-28 13:16:28 +00:00
|
|
|
|
2020-10-12 09:30:35 +00:00
|
|
|
// ensure we don't have any it.only or describe.only in prod
|
|
|
|
'mocha/no-exclusive-tests': 'error',
|
2020-07-08 15:03:16 +00:00
|
|
|
|
2020-10-12 09:30:35 +00:00
|
|
|
'no-restricted-imports': [
|
|
|
|
'error',
|
|
|
|
{
|
|
|
|
patterns: ['*Events'],
|
|
|
|
paths: [
|
|
|
|
{
|
|
|
|
name: 'mitt',
|
|
|
|
message:
|
2022-09-28 13:23:37 +00:00
|
|
|
'Import `mitt` from the vendored location: third_party/mitt/index.js',
|
2020-10-12 09:30:35 +00:00
|
|
|
},
|
|
|
|
],
|
|
|
|
},
|
|
|
|
],
|
|
|
|
'import/extensions': ['error', 'ignorePackages'],
|
2022-06-13 09:16:25 +00:00
|
|
|
|
|
|
|
'no-restricted-syntax': [
|
|
|
|
'error',
|
|
|
|
// Don't allow underscored declarations on camelCased variables/properties.
|
|
|
|
// ...RESTRICTED_UNDERSCORED_IDENTIFIERS,
|
|
|
|
],
|
2020-10-12 09:30:35 +00:00
|
|
|
},
|
|
|
|
overrides: [
|
|
|
|
{
|
|
|
|
files: ['*.ts'],
|
|
|
|
extends: [
|
|
|
|
'plugin:@typescript-eslint/eslint-recommended',
|
|
|
|
'plugin:@typescript-eslint/recommended',
|
|
|
|
],
|
2022-08-12 12:15:26 +00:00
|
|
|
plugins: ['eslint-plugin-tsdoc', 'local'],
|
2020-10-12 09:30:35 +00:00
|
|
|
rules: {
|
2022-08-12 12:15:26 +00:00
|
|
|
// Keeps comments formatted.
|
|
|
|
'local/prettier-comments': 2,
|
2022-06-14 11:55:35 +00:00
|
|
|
// Brackets keep code readable.
|
|
|
|
curly: [2, 'all'],
|
2022-06-15 10:42:21 +00:00
|
|
|
// Brackets keep code readable and `return` intentions clear.
|
|
|
|
'arrow-body-style': ['error', 'always'],
|
2022-06-01 09:11:09 +00:00
|
|
|
// Error if comments do not adhere to `tsdoc`.
|
|
|
|
'tsdoc/syntax': 2,
|
2022-07-06 07:05:37 +00:00
|
|
|
// Keeps array types simple only when they are simple for readability.
|
|
|
|
'@typescript-eslint/array-type': ['error', {default: 'array-simple'}],
|
2020-10-12 09:30:35 +00:00
|
|
|
'no-unused-vars': 0,
|
2022-05-25 13:34:11 +00:00
|
|
|
'@typescript-eslint/no-unused-vars': [
|
|
|
|
'error',
|
2022-06-22 13:25:44 +00:00
|
|
|
{argsIgnorePattern: '^_'},
|
2022-05-25 13:34:11 +00:00
|
|
|
],
|
2020-10-12 09:30:35 +00:00
|
|
|
'func-call-spacing': 0,
|
|
|
|
'@typescript-eslint/func-call-spacing': 2,
|
|
|
|
semi: 0,
|
|
|
|
'@typescript-eslint/semi': 2,
|
|
|
|
'@typescript-eslint/no-empty-function': 0,
|
|
|
|
'@typescript-eslint/no-use-before-define': 0,
|
|
|
|
// We have to use any on some types so the warning isn't valuable.
|
|
|
|
'@typescript-eslint/no-explicit-any': 0,
|
|
|
|
// We don't require explicit return types on basic functions or
|
|
|
|
// dummy functions in tests, for example
|
|
|
|
'@typescript-eslint/explicit-function-return-type': 0,
|
2022-05-25 13:34:11 +00:00
|
|
|
// We allow non-null assertions if the value was asserted using `assert` API.
|
|
|
|
'@typescript-eslint/no-non-null-assertion': 0,
|
2020-10-12 09:30:35 +00:00
|
|
|
/**
|
|
|
|
* This is the default options (as per
|
2021-09-14 15:02:39 +00:00
|
|
|
* https://github.com/typescript-eslint/typescript-eslint/blob/HEAD/packages/eslint-plugin/docs/rules/ban-types.md),
|
2020-10-12 09:30:35 +00:00
|
|
|
*
|
|
|
|
* Unfortunately there's no way to
|
|
|
|
*/
|
|
|
|
'@typescript-eslint/ban-types': [
|
|
|
|
'error',
|
|
|
|
{
|
|
|
|
extendDefaults: true,
|
|
|
|
types: {
|
|
|
|
/*
|
|
|
|
* Puppeteer's API accepts generic functions in many places so it's
|
|
|
|
* not a useful linting rule to ban the `Function` type. This turns off
|
|
|
|
* the banning of the `Function` type which is a default rule.
|
|
|
|
*/
|
|
|
|
Function: false,
|
2020-07-22 11:14:35 +00:00
|
|
|
},
|
2020-10-12 09:30:35 +00:00
|
|
|
},
|
|
|
|
],
|
2021-05-12 16:43:05 +00:00
|
|
|
// By default this is a warning but we want it to error.
|
|
|
|
'@typescript-eslint/explicit-module-boundary-types': 2,
|
2022-06-13 09:16:25 +00:00
|
|
|
'no-restricted-syntax': [
|
|
|
|
'error',
|
|
|
|
{
|
|
|
|
// Never use `require` in TypeScript since they are transpiled out.
|
|
|
|
selector: "CallExpression[callee.name='require']",
|
|
|
|
message: '`require` statements are not allowed. Use `import`.',
|
|
|
|
},
|
|
|
|
],
|
2020-10-12 09:30:35 +00:00
|
|
|
},
|
|
|
|
},
|
|
|
|
],
|
2017-06-11 08:32:59 +00:00
|
|
|
};
|