Compare commits
11 Commits
Author | SHA1 | Date | |
---|---|---|---|
93b869a963
|
|||
c1dc196903
|
|||
f448b3ca98
|
|||
e0b6ba13a1
|
|||
1fb28ac1a6
|
|||
67756a276d
|
|||
04e0fe6a31
|
|||
3f111c5b78
|
|||
9dd76a6ab4
|
|||
fee0f21f2f
|
|||
f8e6286350
|
18
ROADMAP.md
18
ROADMAP.md
@ -283,14 +283,14 @@
|
|||||||
|
|
||||||
## ESLint Comments
|
## ESLint Comments
|
||||||
|
|
||||||
- [ ] "disable-enable-pair"
|
- [X] "disable-enable-pair"
|
||||||
- [ ] "no-aggregating-enable"
|
- [X] "no-aggregating-enable"
|
||||||
- [ ] "no-duplicate-disable"
|
- [X] "no-duplicate-disable"
|
||||||
- [ ] "no-restricted-disable"
|
- [X] "no-restricted-disable"
|
||||||
- [ ] "no-unlimited-disable"
|
- [X] "no-unlimited-disable"
|
||||||
- [ ] "no-unused-disable"
|
- [X] "no-unused-disable"
|
||||||
- [ ] "no-unused-enable"
|
- [X] "no-unused-enable"
|
||||||
- [ ] "no-use"
|
- [X] "no-use"
|
||||||
|
|
||||||
## Import
|
## Import
|
||||||
|
|
||||||
@ -421,7 +421,7 @@
|
|||||||
- [X] "no-inferrable-types"
|
- [X] "no-inferrable-types"
|
||||||
- [X] "no-magic-numbers"
|
- [X] "no-magic-numbers"
|
||||||
- [ ] "no-misused-new"
|
- [ ] "no-misused-new"
|
||||||
- [ ] "no-misused-promises"
|
- [X] "no-misused-promises"
|
||||||
- [X] "no-namespace"
|
- [X] "no-namespace"
|
||||||
- [ ] "no-non-null-asserted-optional-chain"
|
- [ ] "no-non-null-asserted-optional-chain"
|
||||||
- [ ] "no-non-null-assertion"
|
- [ ] "no-non-null-assertion"
|
||||||
|
@ -1,6 +1,6 @@
|
|||||||
{
|
{
|
||||||
"name": "@valentineus/eslint-config",
|
"name": "@valentineus/eslint-config",
|
||||||
"version": "0.0.7",
|
"version": "0.0.9",
|
||||||
"description": "Personal ESLint configuration",
|
"description": "Personal ESLint configuration",
|
||||||
"main": "index.js",
|
"main": "index.js",
|
||||||
"repository": "git@code.valentineus.link:eslint-config.git",
|
"repository": "git@code.valentineus.link:eslint-config.git",
|
||||||
|
@ -1 +1,42 @@
|
|||||||
{}
|
{
|
||||||
|
"eslint-comments/disable-enable-pair": [
|
||||||
|
"error",
|
||||||
|
{
|
||||||
|
"allowWholeFile": true
|
||||||
|
}
|
||||||
|
],
|
||||||
|
"eslint-comments/no-aggregating-enable": [
|
||||||
|
"error"
|
||||||
|
],
|
||||||
|
"eslint-comments/no-duplicate-disable": [
|
||||||
|
"error"
|
||||||
|
],
|
||||||
|
"eslint-comments/no-restricted-disable": [
|
||||||
|
"off"
|
||||||
|
],
|
||||||
|
"eslint-comments/no-unlimited-disable": [
|
||||||
|
"error"
|
||||||
|
],
|
||||||
|
"eslint-comments/no-unused-disable": [
|
||||||
|
"error"
|
||||||
|
],
|
||||||
|
"eslint-comments/no-unused-enable": [
|
||||||
|
"error"
|
||||||
|
],
|
||||||
|
"eslint-comments/no-use": [
|
||||||
|
"error",
|
||||||
|
{
|
||||||
|
"allow": [
|
||||||
|
"eslint",
|
||||||
|
"eslint-disable",
|
||||||
|
"eslint-disable-line",
|
||||||
|
"eslint-disable-next-line",
|
||||||
|
"eslint-enable",
|
||||||
|
"eslint-env",
|
||||||
|
"exported",
|
||||||
|
"global",
|
||||||
|
"globals"
|
||||||
|
]
|
||||||
|
}
|
||||||
|
]
|
||||||
|
}
|
||||||
|
@ -70,6 +70,13 @@
|
|||||||
"ignoreReadonlyClassProperties": true
|
"ignoreReadonlyClassProperties": true
|
||||||
}
|
}
|
||||||
],
|
],
|
||||||
|
"@typescript-eslint/no-misused-promises": [
|
||||||
|
"error",
|
||||||
|
{
|
||||||
|
"checksConditionals": true,
|
||||||
|
"checksVoidReturn": false
|
||||||
|
}
|
||||||
|
],
|
||||||
"@typescript-eslint/no-namespace": [
|
"@typescript-eslint/no-namespace": [
|
||||||
"error",
|
"error",
|
||||||
{
|
{
|
||||||
|
Reference in New Issue
Block a user