mirror of
https://github.com/tiddly-gittly/TidGi-Desktop.git
synced 2025-12-06 02:30:47 -08:00
96 lines
2.3 KiB
JavaScript
96 lines
2.3 KiB
JavaScript
module.exports = {
|
|
parser: '@typescript-eslint/parser',
|
|
parserOptions: {
|
|
project: './tsconfig.eslint.json',
|
|
tsconfigRootDir: __dirname,
|
|
sourceType: 'module',
|
|
ecmaFeatures: {
|
|
jsx: true,
|
|
},
|
|
},
|
|
settings: {
|
|
react: {
|
|
version: '16.13.1',
|
|
},
|
|
'import/resolver': {
|
|
node: {
|
|
extensions: ['.js', '.jsx', '.ts', '.tsx'],
|
|
},
|
|
typescript: {
|
|
alwaysTryTypes: true,
|
|
},
|
|
alias: {
|
|
map: [
|
|
['@', './src'],
|
|
['@services', './src/services'],
|
|
],
|
|
extensions: ['.js', '.jsx', '.ts', '.tsx'],
|
|
},
|
|
},
|
|
},
|
|
rules: {
|
|
'unicorn/prevent-abbreviations': [
|
|
'error',
|
|
{
|
|
whitelist: {
|
|
mod: true,
|
|
Mod: true,
|
|
props: true,
|
|
Props: true,
|
|
i18n: true,
|
|
},
|
|
},
|
|
],
|
|
'@typescript-eslint/member-delimiter-style': [
|
|
'warn',
|
|
{
|
|
multiline: {
|
|
delimiter: 'semi', // 'none' or 'semi' or 'comma'
|
|
requireLast: true,
|
|
},
|
|
singleline: {
|
|
delimiter: 'semi', // 'semi' or 'comma'
|
|
requireLast: false,
|
|
},
|
|
},
|
|
],
|
|
'comma-dangle': [2, 'always-multiline'],
|
|
'no-undef': 'off',
|
|
'unicorn/filename-case': [
|
|
0,
|
|
{
|
|
case: 'camelCase',
|
|
ignore: [/tsx$/],
|
|
},
|
|
],
|
|
'unicorn/consistent-function-scoping': [0],
|
|
'no-void': [0],
|
|
semi: [0],
|
|
'no-use-before-define': [0],
|
|
'@typescript-eslint/no-use-before-define': [1],
|
|
},
|
|
extends: [
|
|
'eslint:recommended',
|
|
'standard',
|
|
'plugin:react/recommended',
|
|
'plugin:unicorn/recommended',
|
|
'plugin:prettier/recommended',
|
|
'prettier/react',
|
|
'prettier/standard',
|
|
'prettier/unicorn',
|
|
'standard-with-typescript',
|
|
'plugin:@typescript-eslint/eslint-recommended',
|
|
'plugin:@typescript-eslint/recommended',
|
|
'plugin:@typescript-eslint/recommended-requiring-type-checking',
|
|
'prettier/@typescript-eslint',
|
|
'plugin:import/errors',
|
|
'plugin:import/warnings',
|
|
'plugin:import/typescript',
|
|
'plugin:react-hooks/recommended',
|
|
],
|
|
plugins: ['@typescript-eslint/eslint-plugin', 'prettier', 'react', 'html', 'react', 'unicorn', 'import', 'react-hooks'],
|
|
env: {
|
|
browser: true,
|
|
es6: true,
|
|
},
|
|
};
|