1 Star 1 Fork 15

我的组织 / vimium-c

forked from gdh1995 / Vimium C 
加入 Gitee
与超过 1200万 开发者一起发现、参与优秀开源项目,私有仓库也完全免费 :)
免费加入
克隆/下载
.eslintrc.json 4.47 KB
一键复制 编辑 原始数据 按行查看 历史
gdh1995 提交于 2020-04-30 19:55 . noop: smaller code
{
"env": { "browser": true, "es6": true },
"extends": [
"plugin:@typescript-eslint/recommended",
"plugin:@typescript-eslint/recommended-requiring-type-checking"
],
"ignorePatterns": ["dist/", "helpers/", "node_modules/", "test*/", "typings/base/", "weidu/", "*.js"],
"parser": "@typescript-eslint/parser",
"parserOptions": { "project": "tsconfig.json", "sourceType": "script" },
"plugins": [ "@typescript-eslint" ],
"rules": {
"@typescript-eslint/adjacent-overload-signatures": "error",
"@typescript-eslint/array-type": [ "error", { "default": "array-simple" } ],
"@typescript-eslint/ban-types": "error",
"@typescript-eslint/camelcase": "off",
"@typescript-eslint/class-name-casing": "off",
"@typescript-eslint/consistent-type-assertions": "off",
"@typescript-eslint/consistent-type-definitions": "error",
"@typescript-eslint/explicit-function-return-type": [ "error", {
"allowExpressions": true, "allowTypedFunctionExpressions": true
} ],
"@typescript-eslint/explicit-member-accessibility": [ "off", { "accessibility": "explicit" } ],
"@typescript-eslint/indent": "off",
"@typescript-eslint/interface-name-prefix": "off",
"@typescript-eslint/member-delimiter-style": [ "error", {
"multiline": { "delimiter": "semi", "requireLast": true },
"singleline": { "delimiter": "semi", "requireLast": false }
} ],
"@typescript-eslint/member-ordering": "off",
"@typescript-eslint/no-empty-function": "error",
"@typescript-eslint/no-empty-interface": [ "error", { "allowSingleExtends": true }],
"@typescript-eslint/no-explicit-any": "off",
"@typescript-eslint/no-misused-new": "error",
"@typescript-eslint/no-namespace": "off",
"@typescript-eslint/no-non-null-assertion": "off",
"@typescript-eslint/no-parameter-properties": "off",
"@typescript-eslint/no-this-alias": "off",
"@typescript-eslint/no-use-before-define": "off",
"@typescript-eslint/no-var-requires": "error",
"@typescript-eslint/no-unused-vars": [ "error", { "vars": "local", "argsIgnorePattern": "^_" } ],
"@typescript-eslint/prefer-for-of": "error",
"@typescript-eslint/prefer-function-type": "off",
"@typescript-eslint/prefer-namespace-keyword": "error",
"@typescript-eslint/prefer-regexp-exec": "off",
"@typescript-eslint/prefer-string-starts-ends-with": "off",
"@typescript-eslint/quotes": [ "error", "double", { "avoidEscape": true } ],
"@typescript-eslint/semi": [ "error", "always" ],
"@typescript-eslint/triple-slash-reference": "off",
"@typescript-eslint/type-annotation-spacing": "error",
"@typescript-eslint/unbound-method": "off",
"@typescript-eslint/unified-signatures": "error",
"arrow-body-style": "error",
"arrow-parens": [ "error", "as-needed" ],
"camelcase": "off",
"comma-dangle": "error",
"complexity": "off",
"constructor-super": "error",
"curly": "error",
"dot-notation": "error",
"eol-last": "error",
"eqeqeq": [ "error", "smart" ],
"guard-for-in": "off",
"id-blacklist": [ "error", "any", "number", "boolean" ],
"id-match": "error",
"import/order": "off",
"max-classes-per-file": "off",
"max-len": [ "error", { "ignorePattern": "^(//|/\\*| \\*)", "code": 120 } ],
"new-parens": "error",
"no-bitwise": "off",
"no-caller": "error",
"no-cond-assign": "off",
"no-console": "off",
"no-debugger": "error",
"no-empty": [ "error", { "allowEmptyCatch": true } ],
"no-eval": "error",
"no-fallthrough": "off",
"no-invalid-this": "off",
"no-multiple-empty-lines": "error",
"no-new-wrappers": "error",
"no-shadow": [ "error", { "hoist": "all" } ],
"no-throw-literal": "error",
"no-trailing-spaces": "error",
"no-undef-init": "error",
"no-underscore-dangle": "off",
"no-unsafe-finally": "error",
"no-unused-expressions": "off",
"no-unused-labels": "error",
"no-var": "error",
"object-shorthand": "error",
"one-var": "off",
"prefer-arrow/prefer-arrow-functions": "off",
"prefer-const": "off",
"prefer-spread": "off",
"prefer-rest-params": "off",
"quote-props": [ "error", "as-needed" ],
"radix": "error",
"space-before-function-paren": "off",
"spaced-comment": [ "error", "always", {
"line": { "markers": [ "/" ] },
"block": { "exceptions": [ "#__NOINLINE__" ] }
} ],
"use-isnan": "error",
"valid-typeof": "off"
},
"settings": {
"import/parsers": {
"@typescript-eslint/parser": [".ts"]
}
}
}
TypeScript
1
https://gitee.com/one_person_organization/vimium-c.git
git@gitee.com:one_person_organization/vimium-c.git
one_person_organization
vimium-c
vimium-c
master

搜索帮助