Skip to content

Commit

Permalink
Bump @typescript-eslint/eslint-plugin from 1.13.0 to 3.3.0 (Uncharted…
Browse files Browse the repository at this point in the history
…Bull#741)

* Bump @typescript-eslint/eslint-plugin from 1.13.0 to 3.3.0

Bumps [@typescript-eslint/eslint-plugin](https://github.com/typescript-eslint/typescript-eslint/tree/HEAD/packages/eslint-plugin) from 1.13.0 to 3.3.0.
- [Release notes](https://github.com/typescript-eslint/typescript-eslint/releases)
- [Changelog](https://github.com/typescript-eslint/typescript-eslint/blob/master/packages/eslint-plugin/CHANGELOG.md)
- [Commits](https://github.com/typescript-eslint/typescript-eslint/commits/v3.3.0/packages/eslint-plugin)

Signed-off-by: dependabot-preview[bot] <support@dependabot.com>

* remove prettier, rely on eslintrc

Co-authored-by: dependabot-preview[bot] <27856297+dependabot-preview[bot]@users.noreply.github.com>
Co-authored-by: UnchartedBull <timon.gaebelein@icloud.com>
  • Loading branch information
2 people authored and kantlivelong committed May 5, 2021
1 parent 96937d9 commit 67a037a
Show file tree
Hide file tree
Showing 45 changed files with 3,965 additions and 4,072 deletions.
19 changes: 0 additions & 19 deletions .editorconfig

This file was deleted.

86 changes: 43 additions & 43 deletions .eslintrc.js
Original file line number Diff line number Diff line change
@@ -1,45 +1,45 @@
module.exports = {
parser: '@typescript-eslint/parser',
extends: [
'plugin:@typescript-eslint/recommended',
'prettier',
'prettier/@typescript-eslint',
'plugin:import/errors',
'plugin:import/warnings',
'plugin:import/typescript'
],
parserOptions: {
ecmaVersion: 2018,
sourceType: 'module',
root: true,
parser: "@typescript-eslint/parser",
plugins: ["@typescript-eslint", "import", "simple-import-sort"],
extends: [
"eslint:recommended",
"plugin:@typescript-eslint/recommended",
"plugin:import/errors",
"plugin:import/warnings",
"plugin:import/typescript",
],
parserOptions: {
ecmaVersion: 2020,
sourceType: "module",
},
rules: {
"@typescript-eslint/no-parameter-properties": "off",
"@typescript-eslint/no-use-before-define": "off",
"import/no-unresolved": "off",
camelcase: "warn",
"simple-import-sort/sort": "warn",
"sort-imports": "off",
"import/first": "warn",
"import/newline-after-import": "warn",
"import/no-duplicates": "warn",
"import/no-absolute-path": "warn",
"import/no-unused-modules": "warn",
"import/no-deprecated": "warn",
"import/no-self-import": "error",
"max-len": ["warn", { code: 170, tabWidth: 2, ignoreUrls: true }],
},
overrides: [
{
files: "**/*.ts",
rules: {
"import/order": [
"off",
{
"newlines-between": "always",
},
],
},
},
rules: {
'@typescript-eslint/no-parameter-properties': 'off',
'@typescript-eslint/no-use-before-define': 'off',
'prettier/prettier': 'warn',
'import/no-unresolved': 'off',
'camelcase': 'warn',
'simple-import-sort/sort': 'warn',
'sort-imports': 'off',
"import/first": "warn",
"import/newline-after-import": "warn",
"import/no-duplicates": "warn",
'import/no-absolute-path': 'warn',
'import/no-unused-modules': 'warn',
'import/no-deprecated': 'warn',
'import/no-self-import': 'error'
},
plugins: [
'@typescript-eslint',
'prettier',
'import',
'simple-import-sort'
],
overrides: [{
'files': '**/*.ts',
'rules': {
'import/order': ['off', {
'newlines-between': 'always'
}],
}
}]
}
],
};
11 changes: 0 additions & 11 deletions .prettierrc.js

This file was deleted.

Loading

0 comments on commit 67a037a

Please sign in to comment.