mirror of
https://github.com/Llewellynvdm/nativefier.git
synced 2024-11-15 17:27:08 +00:00
14d95da079
Co-authored-by: Ronan Jouchet <ronan@jouchet.fr>
42 lines
1.3 KiB
JavaScript
42 lines
1.3 KiB
JavaScript
// # https://github.com/typescript-eslint/typescript-eslint/blob/master/docs/getting-started/linting/README.md
|
|
module.exports = {
|
|
root: true,
|
|
parser: '@typescript-eslint/parser',
|
|
parserOptions: {
|
|
tsconfigRootDir: __dirname,
|
|
project: ['./tsconfig.json'],
|
|
},
|
|
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'
|
|
}
|
|
],
|
|
// TODO remove when done killing `any`s and making tsc strict
|
|
'@typescript-eslint/ban-ts-comment': 'off',
|
|
'@typescript-eslint/no-explicit-any': 'off',
|
|
'@typescript-eslint/no-unsafe-assignment': 'off',
|
|
'@typescript-eslint/no-unsafe-call': 'off',
|
|
'@typescript-eslint/no-unsafe-member-access': 'off',
|
|
'@typescript-eslint/no-unsafe-return': 'off',
|
|
},
|
|
// 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/**",
|
|
]
|
|
};
|