course-mini-excel/.eslintrc.js
2022-06-08 21:00:36 +05:00

27 lines
614 B
JavaScript

module.exports = {
root: true,
parser: '@typescript-eslint/parser',
plugins: ['@typescript-eslint'],
extends: [
'eslint:recommended',
'plugin:@typescript-eslint/recommended',
'plugin:@typescript-eslint/recommended-requiring-type-checking',
'airbnb/base',
'airbnb-typescript/base',
],
parserOptions: {
project: './tsconfig.json'
},
rules: {
"@typescript-eslint/no-unsafe-assignment": "off",
"@typescript-eslint/no-explicit-any": "off",
"no-console": "off"
},
env: {
browser: true,
node: true,
es6: true,
},
ignorePatterns: ['.eslintrc.js']
};