mirror of
https://github.com/Llewellynvdm/nativefier.git
synced 2024-10-31 18:52:30 +00:00
b74c0bf959
* Convert app to strict typing + shared library * Fix new code post-merge * Remove extraneous lint ignores * Apply suggestions from code review Co-authored-by: Ronan Jouchet <ronan@jouchet.fr> * Fix prettier complaint * Dedupe eslint files * Fix some refs after merge * Fix clean:full command Co-authored-by: Ronan Jouchet <ronan@jouchet.fr>
41 lines
1.4 KiB
JavaScript
41 lines
1.4 KiB
JavaScript
// # https://github.com/typescript-eslint/typescript-eslint/blob/master/docs/getting-started/linting/README.md
|
|
module.exports = {
|
|
parser: '@typescript-eslint/parser',
|
|
plugins: ['@typescript-eslint', 'prettier'],
|
|
extends: [
|
|
'eslint:recommended',
|
|
'prettier',
|
|
'plugin:@typescript-eslint/eslint-recommended',
|
|
'plugin:@typescript-eslint/recommended',
|
|
'plugin:@typescript-eslint/recommended-requiring-type-checking',
|
|
],
|
|
rules: {
|
|
'no-console': 'error',
|
|
'prettier/prettier': [
|
|
'error',
|
|
{
|
|
endOfLine: 'auto',
|
|
},
|
|
],
|
|
'@typescript-eslint/explicit-function-return-type': 'error',
|
|
'@typescript-eslint/no-confusing-non-null-assertion': 'error',
|
|
'@typescript-eslint/no-explicit-any': 'error',
|
|
'@typescript-eslint/no-extraneous-class': 'error',
|
|
'@typescript-eslint/no-implicit-any-catch': 'error',
|
|
'@typescript-eslint/no-invalid-void-type': 'error',
|
|
'@typescript-eslint/prefer-ts-expect-error': 'error',
|
|
'@typescript-eslint/type-annotation-spacing': 'error',
|
|
'@typescript-eslint/typedef': 'error',
|
|
'@typescript-eslint/unified-signatures': 'error',
|
|
},
|
|
// https://eslint.org/docs/user-guide/configuring/ignoring-code#ignorepatterns-in-config-files
|
|
ignorePatterns: [
|
|
'node_modules/**',
|
|
'app/node_modules/**',
|
|
'app/lib/**',
|
|
'lib/**',
|
|
'built-tests/**',
|
|
'coverage/**',
|
|
],
|
|
};
|