Skip to content

Commit

Permalink
chore(workspace): fix CI build
Browse files Browse the repository at this point in the history
  • Loading branch information
tomastrajan committed Nov 10, 2020
1 parent f859133 commit 23b3f2c
Showing 1 changed file with 68 additions and 76 deletions.
144 changes: 68 additions & 76 deletions .eslintrc
Expand Up @@ -4,10 +4,7 @@
"es6": true,
"node": true
},
"extends": [
"prettier",
"prettier/@typescript-eslint"
],
"extends": ["prettier", "prettier/@typescript-eslint"],
"parser": "@typescript-eslint/parser",
"parserOptions": {
"project": "tsconfig.json",
Expand All @@ -20,8 +17,14 @@
"@typescript-eslint/tslint"
],
"rules": {
"@angular-eslint/directive-selector": ["error", { "type": "attribute", "prefix": "anms", "style": "camelCase"}],
"@angular-eslint/component-selector": ["error", { "type": "element", "prefix": "anms", "style": "kebab-case"}],
"@angular-eslint/directive-selector": [
"error",
{ "type": "attribute", "prefix": "anms", "style": "camelCase" }
],
"@angular-eslint/component-selector": [
"error",
{ "type": "element", "prefix": "anms", "style": "kebab-case" }
],
"@angular-eslint/component-class-suffix": "error",
"@angular-eslint/directive-class-suffix": "error",
"@angular-eslint/no-input-rename": "error",
Expand All @@ -31,100 +34,90 @@
"@typescript-eslint/consistent-type-definitions": "error",
"@typescript-eslint/dot-notation": "off",
"@typescript-eslint/explicit-member-accessibility": [
"off",
{
"accessibility": "explicit"
}
"off",
{
"accessibility": "explicit"
}
],
"@typescript-eslint/member-ordering": "error",
"@typescript-eslint/naming-convention": "error",
"@typescript-eslint/no-empty-function": "off",
"@typescript-eslint/no-empty-interface": "error",
"@typescript-eslint/no-inferrable-types": [
"error",
{
"ignoreParameters": true
}
"error",
{
"ignoreParameters": true
}
],
"@typescript-eslint/no-misused-new": "error",
"@typescript-eslint/no-non-null-assertion": "error",
"@typescript-eslint/no-unused-expressions": "error",
"@typescript-eslint/prefer-function-type": "error",
"@typescript-eslint/quotes": [
"error",
"single"
],
"@typescript-eslint/quotes": ["error", "single"],
"@typescript-eslint/tslint/config": [
"error",
{
"rules": {
"whitespace": true
}
"error",
{
"rules": {
"whitespace": true
}
}
],
"@typescript-eslint/unified-signatures": "error",
"arrow-body-style": "error",
"constructor-super": "error",
"eqeqeq": [
"error",
"smart"
],
"eqeqeq": ["error", "smart"],
"guard-for-in": "error",
"id-blacklist": "off",
"id-match": "off",
"import/no-deprecated": "warn",
"no-bitwise": "error",
"no-caller": "error",
"no-console": [
"error",
{
"allow": [
"log",
"dirxml",
"warn",
"error",
"dir",
"timeLog",
"assert",
"clear",
"count",
"countReset",
"group",
"groupCollapsed",
"groupEnd",
"table",
"Console",
"markTimeline",
"profile",
"profileEnd",
"timeline",
"timelineEnd",
"timeStamp",
"context"
]
}
"error",
{
"allow": [
"log",
"dirxml",
"warn",
"error",
"dir",
"timeLog",
"assert",
"clear",
"count",
"countReset",
"group",
"groupCollapsed",
"groupEnd",
"table",
"Console",
"markTimeline",
"profile",
"profileEnd",
"timeline",
"timelineEnd",
"timeStamp",
"context"
]
}
],
"no-debugger": "error",
"no-empty": "off",
"no-eval": "error",
"no-fallthrough": "error",
"no-new-wrappers": "error",
"no-restricted-imports": [
"error",
{
"paths": [
"rxjs/Rx"
],
"patterns": [
"rxjs/(?!operators|testing)"
]
}
"error",
{
"paths": ["rxjs/Rx"],
"patterns": ["rxjs/(?!operators|testing)"]
}
],
"no-shadow": [
"error",
{
"hoist": "all"
}
"error",
{
"hoist": "all"
}
],
"no-throw-literal": "error",
"no-undef-init": "error",
Expand All @@ -134,13 +127,12 @@
"prefer-const": "error",
"radix": "error",
"spaced-comment": [
"error",
"always",
{
"markers": [
"/"
]
}
]
"error",
"always",
{
"markers": ["/"]
}
],
"indent": "off"
}
}
}

0 comments on commit 23b3f2c

Please sign in to comment.