2021-12-23 22:36:13 -05:00
|
|
|
{
|
|
|
|
"settings": {
|
|
|
|
"import/resolver": {
|
|
|
|
"node": {
|
|
|
|
"extensions": [".js", ".jsx", ".ts", ".tsx"]
|
|
|
|
}
|
|
|
|
}
|
|
|
|
},
|
|
|
|
"env": {
|
|
|
|
"es6": true,
|
|
|
|
"node": true
|
|
|
|
},
|
|
|
|
"extends": ["airbnb-base"],
|
|
|
|
"globals": {
|
|
|
|
"Atomics": "readonly",
|
|
|
|
"SharedArrayBuffer": "readonly"
|
|
|
|
},
|
|
|
|
"parser": "@typescript-eslint/parser",
|
|
|
|
"parserOptions": {
|
|
|
|
"ecmaVersion": 2020,
|
|
|
|
"sourceType": "module"
|
|
|
|
},
|
|
|
|
"plugins": ["@typescript-eslint"],
|
|
|
|
"rules": {
|
|
|
|
"linebreak-style": "off",
|
|
|
|
"no-unused-vars": "off",
|
|
|
|
"max-len": "off",
|
|
|
|
"import/no-dynamic-require": "off",
|
|
|
|
"global-require": "off",
|
|
|
|
"class-methods-use-this": "off",
|
|
|
|
"no-restricted-syntax": "off",
|
|
|
|
"camelcase": "off",
|
|
|
|
"indent": "warn",
|
|
|
|
"object-curly-newline": "off",
|
|
|
|
"import/prefer-default-export": "off",
|
|
|
|
"no-useless-constructor": "off",
|
|
|
|
"@typescript-eslint/no-useless-constructor": 2,
|
|
|
|
"import/extensions": "off",
|
|
|
|
"no-param-reassign": "off",
|
|
|
|
"no-underscore-dangle": "off",
|
|
|
|
"keyword-spacing": "off",
|
|
|
|
"no-multiple-empty-lines": "off",
|
|
|
|
"consistent-return": "off",
|
|
|
|
"no-continue": "off",
|
2022-03-01 12:18:21 -05:00
|
|
|
"no-plusplus": "off",
|
2023-02-16 13:24:59 -05:00
|
|
|
"no-undef": "off",
|
|
|
|
"space-before-function-paren": "off"
|
2021-12-23 22:36:13 -05:00
|
|
|
},
|
|
|
|
"ignorePatterns": "**/*.js"
|
|
|
|
}
|