mirror of
https://github.com/Llewellynvdm/nativefier.git
synced 2025-01-07 07:54:15 +00:00
25 lines
850 B
JavaScript
25 lines
850 B
JavaScript
|
// # https://github.com/typescript-eslint/typescript-eslint/blob/master/docs/getting-started/linting/README.md
|
||
|
module.exports = {
|
||
|
parser: '@typescript-eslint/parser',
|
||
|
parserOptions: {
|
||
|
tsconfigRootDir: __dirname,
|
||
|
project: ['./tsconfig.json'],
|
||
|
},
|
||
|
plugins: ['@typescript-eslint'],
|
||
|
extends: [
|
||
|
'eslint:recommended',
|
||
|
'prettier',
|
||
|
'plugin:@typescript-eslint/eslint-recommended',
|
||
|
'plugin:@typescript-eslint/recommended',
|
||
|
'plugin:@typescript-eslint/recommended-requiring-type-checking',
|
||
|
],
|
||
|
rules: {
|
||
|
'prettier/prettier': 'error',
|
||
|
// TODO remove when done killing anys and making tsc strict
|
||
|
'@typescript-eslint/no-explicit-any': 'off',
|
||
|
'@typescript-eslint/ban-ts-ignore': 'off',
|
||
|
'@typescript-eslint/no-use-before-define': 'off',
|
||
|
'@typescript-eslint/explicit-function-return-type': 'off',
|
||
|
},
|
||
|
};
|