-
Notifications
You must be signed in to change notification settings - Fork 50
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
Showing
27 changed files
with
874 additions
and
224 deletions.
There are no files selected for viewing
Empty file.
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 |
---|---|---|
@@ -1,19 +1,18 @@ | ||
{ | ||
"env": { | ||
"browser": true, | ||
"es2021": true | ||
"es2020": true | ||
}, | ||
|
||
"extends": ["eslint:recommended", "prettier"], | ||
"extends": ["eslint:recommended"], | ||
"parser": "@typescript-eslint/parser", | ||
"plugins": ["@typescript-eslint"], | ||
|
||
"parserOptions": { | ||
"sourceType": "module" | ||
}, | ||
// Здесь мы подключаем используемые плагины. | ||
"plugins": ["prettier"], | ||
/* Правила для отслеживания линтером. Если пресеты покрывают не все ситуации, | ||
вы можете прописать нужные правила вручную. */ | ||
|
||
"rules": { | ||
"prettier/prettier": "error" | ||
"no-unused-vars": "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
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 |
---|---|---|
|
@@ -3,5 +3,5 @@ | |
"rules": { | ||
"selector-class-pattern": null | ||
}, | ||
"ignoreFiles": ["dist/*"] | ||
"ignoreFiles": ["/dist/*"] | ||
} |
Oops, something went wrong.