2018-01-08 21:19:25 +00:00
|
|
|
|
// For reference: https://github.com/airbnb/javascript
|
|
|
|
|
|
2020-09-03 14:59:24 +00:00
|
|
|
|
const rules = {
|
|
|
|
|
'comma-dangle': [
|
|
|
|
|
'error',
|
|
|
|
|
{
|
|
|
|
|
arrays: 'always-multiline',
|
|
|
|
|
objects: 'always-multiline',
|
|
|
|
|
imports: 'always-multiline',
|
|
|
|
|
exports: 'always-multiline',
|
|
|
|
|
functions: 'never',
|
|
|
|
|
},
|
|
|
|
|
],
|
|
|
|
|
|
|
|
|
|
// prevents us from accidentally checking in exclusive tests (`.only`):
|
|
|
|
|
'mocha/no-exclusive-tests': 'error',
|
|
|
|
|
|
|
|
|
|
// encourage consistent use of `async` / `await` instead of `then`
|
|
|
|
|
'more/no-then': 'error',
|
|
|
|
|
|
|
|
|
|
// it helps readability to put public API at top,
|
|
|
|
|
'no-use-before-define': 'off',
|
|
|
|
|
|
|
|
|
|
// useful for unused or internal fields
|
|
|
|
|
'no-underscore-dangle': 'off',
|
|
|
|
|
|
|
|
|
|
// useful for unused parameters
|
|
|
|
|
'@typescript-eslint/no-unused-vars': ['error', { argsIgnorePattern: '^_' }],
|
|
|
|
|
|
|
|
|
|
// though we have a logger, we still remap console to log to disk
|
|
|
|
|
'no-console': 'error',
|
|
|
|
|
|
|
|
|
|
// consistently place operators at end of line except ternaries
|
|
|
|
|
'operator-linebreak': [
|
|
|
|
|
'error',
|
|
|
|
|
'after',
|
|
|
|
|
{ overrides: { '?': 'ignore', ':': 'ignore' } },
|
|
|
|
|
],
|
|
|
|
|
|
|
|
|
|
quotes: [
|
|
|
|
|
'error',
|
|
|
|
|
'single',
|
|
|
|
|
{ avoidEscape: true, allowTemplateLiterals: false },
|
|
|
|
|
],
|
|
|
|
|
|
|
|
|
|
// Prettier overrides:
|
|
|
|
|
'arrow-parens': 'off',
|
|
|
|
|
'function-paren-newline': 'off',
|
|
|
|
|
'max-len': [
|
|
|
|
|
'error',
|
|
|
|
|
{
|
|
|
|
|
// Prettier generally limits line length to 80 but sometimes goes over.
|
|
|
|
|
// The `max-len` plugin doesn’t let us omit `code` so we set it to a
|
|
|
|
|
// high value as a buffer to let Prettier control the line length:
|
|
|
|
|
code: 999,
|
|
|
|
|
// We still want to limit comments as before:
|
|
|
|
|
comments: 90,
|
|
|
|
|
ignoreUrls: true,
|
|
|
|
|
},
|
|
|
|
|
],
|
|
|
|
|
|
|
|
|
|
'import/prefer-default-export': 'off',
|
|
|
|
|
};
|
|
|
|
|
|
2018-01-08 21:19:25 +00:00
|
|
|
|
module.exports = {
|
2020-09-01 00:09:28 +00:00
|
|
|
|
root: true,
|
2018-01-08 21:19:25 +00:00
|
|
|
|
settings: {
|
2020-09-01 00:09:28 +00:00
|
|
|
|
react: {
|
|
|
|
|
version: 'detect',
|
|
|
|
|
},
|
2018-04-27 21:25:04 +00:00
|
|
|
|
'import/core-modules': ['electron'],
|
2018-01-08 21:19:25 +00:00
|
|
|
|
},
|
|
|
|
|
|
2018-04-27 21:25:04 +00:00
|
|
|
|
extends: ['airbnb-base', 'prettier'],
|
2018-01-08 21:19:25 +00:00
|
|
|
|
|
2018-04-27 21:25:04 +00:00
|
|
|
|
plugins: ['mocha', 'more'],
|
2018-02-22 18:21:53 +00:00
|
|
|
|
|
2020-09-01 00:09:28 +00:00
|
|
|
|
overrides: [
|
|
|
|
|
{
|
|
|
|
|
files: ['*.ts', '*.tsx'],
|
|
|
|
|
parser: '@typescript-eslint/parser',
|
|
|
|
|
parserOptions: {
|
|
|
|
|
project: 'tsconfig.json',
|
|
|
|
|
ecmaFeatures: {
|
|
|
|
|
jsx: true,
|
|
|
|
|
},
|
|
|
|
|
ecmaVersion: 2018,
|
|
|
|
|
sourceType: 'module',
|
|
|
|
|
},
|
|
|
|
|
plugins: ['@typescript-eslint'],
|
|
|
|
|
extends: [
|
|
|
|
|
'eslint:recommended',
|
|
|
|
|
'plugin:@typescript-eslint/recommended',
|
|
|
|
|
'plugin:react/recommended',
|
|
|
|
|
'airbnb-typescript-prettier',
|
|
|
|
|
],
|
2020-09-03 14:59:24 +00:00
|
|
|
|
rules,
|
2020-09-01 00:09:28 +00:00
|
|
|
|
},
|
|
|
|
|
{
|
2020-09-03 14:59:24 +00:00
|
|
|
|
files: ['**/*.stories.tsx', 'ts/build/**'],
|
2020-09-01 00:09:28 +00:00
|
|
|
|
rules: {
|
2020-09-03 14:59:24 +00:00
|
|
|
|
...rules,
|
2020-09-01 00:09:28 +00:00
|
|
|
|
'import/no-extraneous-dependencies': 'off',
|
|
|
|
|
'react/jsx-props-no-spreading': 'off',
|
|
|
|
|
},
|
|
|
|
|
},
|
|
|
|
|
],
|
|
|
|
|
|
2020-09-03 14:59:24 +00:00
|
|
|
|
rules,
|
2018-01-08 21:19:25 +00:00
|
|
|
|
};
|