Skip to content

Commit

Permalink
style: update linting
Browse files Browse the repository at this point in the history
  • Loading branch information
IlyaSemenov committed Dec 23, 2022
1 parent 95d1902 commit d6badd6
Show file tree
Hide file tree
Showing 40 changed files with 933 additions and 910 deletions.
20 changes: 10 additions & 10 deletions .eslintrc.js
Original file line number Diff line number Diff line change
@@ -1,22 +1,22 @@
module.exports = {
root: true,
extends: [
'plugin:@typescript-eslint/recommended',
'plugin:prettier/recommended',
"plugin:@typescript-eslint/recommended",
"plugin:prettier/recommended",
],
plugins: ['simple-import-sort'],
plugins: ["simple-import-sort"],
rules: {
'prettier/prettier': 'warn',
'simple-import-sort/imports': 'warn',
'simple-import-sort/exports': 'warn',
'@typescript-eslint/no-explicit-any': 'off',
'@typescript-eslint/explicit-module-boundary-types': 'off',
"prettier/prettier": "warn",
"simple-import-sort/imports": "warn",
"simple-import-sort/exports": "warn",
"@typescript-eslint/no-explicit-any": "off",
"@typescript-eslint/explicit-module-boundary-types": "off",
},
overrides: [
{
files: '*.js',
files: "*.js",
rules: {
'@typescript-eslint/no-var-requires': 'off',
"@typescript-eslint/no-var-requires": "off",
},
},
],
Expand Down
Loading

0 comments on commit d6badd6

Please sign in to comment.