mirror of
https://github.com/zerobig/vscode-1c-metadata-viewer.git
synced 2024-11-21 17:56:31 +02:00
22 lines
577 B
JavaScript
22 lines
577 B
JavaScript
/**@type {import('eslint').Linter.Config} */
|
|
// eslint-disable-next-line no-undef
|
|
module.exports = {
|
|
root: true,
|
|
parser: '@typescript-eslint/parser',
|
|
plugins: [
|
|
'@typescript-eslint',
|
|
],
|
|
extends: [
|
|
'eslint:recommended',
|
|
'plugin:@typescript-eslint/recommended',
|
|
],
|
|
rules: {
|
|
'semi': [2, "always"],
|
|
'@typescript-eslint/no-unused-vars': 0,
|
|
'@typescript-eslint/no-explicit-any': 0,
|
|
'@typescript-eslint/explicit-module-boundary-types': 0,
|
|
'@typescript-eslint/no-non-null-assertion': 0,
|
|
'@typescript-eslint/no-namespace': 0,
|
|
'no-inner-declarations': 0,
|
|
}
|
|
}; |