forked from UnchartedBull/OctoDash
-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Bump @typescript-eslint/eslint-plugin from 1.13.0 to 3.3.0 (Uncharted…
…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
1 parent
96937d9
commit 67a037a
Showing
45 changed files
with
3,965 additions
and
4,072 deletions.
There are no files selected for viewing
This file was deleted.
Oops, something went wrong.
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,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' | ||
}], | ||
} | ||
}] | ||
} | ||
], | ||
}; |
This file was deleted.
Oops, something went wrong.
Oops, something went wrong.