40 lines
1.4 KiB
JavaScript
40 lines
1.4 KiB
JavaScript
// eslint-disable-next-line no-undef
|
|
module.exports = {
|
|
root: true,
|
|
parser: '@typescript-eslint/parser',
|
|
plugins: [
|
|
'@typescript-eslint',
|
|
'no-null',
|
|
],
|
|
extends: [
|
|
'eslint:recommended',
|
|
"plugin:@typescript-eslint/eslint-recommended",
|
|
"plugin:@typescript-eslint/recommended",
|
|
],
|
|
rules: {
|
|
"no-console": "error",
|
|
"max-len": ["error", {"code": 128}],
|
|
"no-process-env": "error",
|
|
"no-process-exit": "error",
|
|
"no-null/no-null": "error",
|
|
"no-useless-return": "error",
|
|
"prefer-arrow-callback": "warn",
|
|
"object-curly-spacing": "error",
|
|
"consistent-return": "error",
|
|
"@typescript-eslint/explicit-function-return-type": [
|
|
"error", {
|
|
"allowExpressions": true,
|
|
},
|
|
],
|
|
"no-void": "error",
|
|
"comma-spacing": "error",
|
|
"comma-dangle": ["error", "always-multiline"],
|
|
|
|
"no-restricted-imports": ["error",
|
|
"assert", "buffer", "child_process", "cluster", "crypto", "dgram", "dns", "domain", "events", "freelist",
|
|
"fs", "http", "https", "module", "net", "os", "path", "punycode", "querystring", "readline", "repl",
|
|
"smalloc", "stream", "string_decoder", "sys", "timers", "tls", "tracing", "tty", "url", "util", "vm", "zlib",
|
|
],
|
|
},
|
|
};
|