22 строки
918 B
JavaScript
22 строки
918 B
JavaScript
module.exports = {
|
|
ignorePatterns: ['**/*.d.ts', '**/*.test.ts', '**/*.js'],
|
|
parser: '@typescript-eslint/parser',
|
|
extends: ['plugin:@typescript-eslint/recommended'],
|
|
plugins: ['header'],
|
|
parserOptions: {
|
|
ecmaVersion: 2018, // Allows for the parsing of modern ECMAScript features
|
|
sourceType: 'module', // Allows for the use of imports
|
|
},
|
|
rules: {
|
|
'@typescript-eslint/no-use-before-define': 'off',
|
|
'@typescript-eslint/explicit-function-return-type': 'off',
|
|
'header/header': [
|
|
'error',
|
|
'block',
|
|
'---------------------------------------------------------\n * Copyright (C) Microsoft Corporation. All rights reserved.\n *--------------------------------------------------------',
|
|
],
|
|
// Place to specify ESLint rules. Can be used to overwrite rules specified from the extended configs
|
|
// e.g. "@typescript-eslint/explicit-function-return-type": "off",
|
|
},
|
|
};
|