mirror of
https://github.com/Dan6erbond/sk-auth.git
synced 2024-11-20 19:07:20 +01:00
22 lines
538 B
JavaScript
22 lines
538 B
JavaScript
|
module.exports = {
|
||
|
root: true,
|
||
|
parser: "@typescript-eslint/parser",
|
||
|
extends: ["prettier"],
|
||
|
plugins: ["@typescript-eslint"],
|
||
|
parserOptions: {
|
||
|
sourceType: "module",
|
||
|
ecmaVersion: 2019,
|
||
|
},
|
||
|
env: {
|
||
|
browser: true,
|
||
|
es2017: true,
|
||
|
node: true,
|
||
|
},
|
||
|
rules: {
|
||
|
"@typescript-eslint/explicit-module-boundary-types": "off",
|
||
|
"@typescript-eslint/no-explicit-any": "off",
|
||
|
"@typescript-eslint/no-unused-vars": ["off", { argsIgnorePattern: "^_" }],
|
||
|
"@typescript-eslint/no-non-null-assertion": "off",
|
||
|
},
|
||
|
};
|