-
Notifications
You must be signed in to change notification settings - Fork 22
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
BREAKING CHANGE: Templates now use Injector from the outlet as a fallback
- Loading branch information
1 parent
8dabbe9
commit 3cad831
Showing
56 changed files
with
27,153 additions
and
23,485 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,26 @@ | ||
/** | ||
* @type {import('eslint').Linter.Config} | ||
*/ | ||
module.exports = { | ||
root: true, | ||
extends: ['plugin:@taiga-ui/experience/all'], | ||
overrides: [ | ||
{ | ||
files: ['*.ts'], | ||
rules: { | ||
'@typescript-eslint/quotes': ['error', 'single'], | ||
'@taiga-ui/experience/prefer-inject-decorator': 'off', | ||
'@taiga-ui/experience/no-typeof': 'off', | ||
'@typescript-eslint/consistent-type-assertions': 'off', | ||
'no-restricted-syntax': 'off', // TODO | ||
'unicorn/filename-case': 'off', | ||
}, | ||
}, | ||
{ | ||
files: ['*'], | ||
rules: { | ||
'no-irregular-whitespace': 'off', | ||
}, | ||
}, | ||
], | ||
}; |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,21 @@ | ||
codecov: | ||
branch: main | ||
notify: | ||
require_ci_to_pass: no | ||
|
||
coverage: | ||
# This value is used to customize the visible color range in Codecov. | ||
# The first number represents the red, and the second represents green. | ||
# You can change the range of colors by adjusting this configuration. | ||
range: 50..100 # by default 70..100 | ||
round: down | ||
precision: 2 | ||
|
||
# Disable codecov/patch check | ||
status: | ||
project: | ||
default: | ||
enabled: false | ||
patch: | ||
default: | ||
enabled: false |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Oops, something went wrong.