Timo Hocker
5f32178a27
All checks were successful
continuous-integration/drone/push Build is passing
49 lines
1.1 KiB
JavaScript
49 lines
1.1 KiB
JavaScript
/*
|
|
* Copyright (C) Sapphirecode - All Rights Reserved
|
|
* This file is part of eslint-config-ts which is released under MIT.
|
|
* See file 'LICENSE' for full license details.
|
|
* Created by Timo Hocker <timo@scode.ovh>, May 2020
|
|
*/
|
|
|
|
module.exports = {
|
|
|
|
globals: {},
|
|
|
|
parser: '@typescript-eslint/parser',
|
|
|
|
extends: [
|
|
'@sapphirecode/eslint-config-es6',
|
|
'plugin:@typescript-eslint/eslint-recommended',
|
|
'plugin:@typescript-eslint/recommended'
|
|
],
|
|
|
|
plugins: [
|
|
'@typescript-eslint',
|
|
'eslint-plugin-tsdoc'
|
|
],
|
|
|
|
parserOptions: {
|
|
sourceType: 'module',
|
|
parser: 'babel-eslint'
|
|
},
|
|
|
|
settings: {
|
|
'import/parsers': {
|
|
'@typescript-eslint/parser': ['.ts', '.tsx']
|
|
}
|
|
},
|
|
|
|
rules: {
|
|
'@typescript-eslint/camelcase': 'off',
|
|
'@typescript-eslint/naming-convention': 'off',
|
|
'@typescript-eslint/no-use-before-define': 'off',
|
|
'@typescript-eslint/type-annotation-spacing': 'error',
|
|
'@typescript-eslint/sort-type-union-intersection-members': 'error',
|
|
'tsdoc/syntax': 'error',
|
|
// deactivating commonjs rules
|
|
'id-match': 'off',
|
|
'no-underscore-dangle': 'off',
|
|
'node/no-missing-import': 'off'
|
|
}
|
|
}
|