Skip to content

Commit

Permalink
build(deps-dev): bump eslint-plugin-simple-import-sort from 5.0.3 to …
Browse files Browse the repository at this point in the history
…7.0.0 (#137)

* build(deps-dev): bump eslint-plugin-simple-import-sort

Bumps [eslint-plugin-simple-import-sort](https://github.com/lydell/eslint-plugin-simple-import-sort) from 5.0.3 to 7.0.0.
- [Release notes](https://github.com/lydell/eslint-plugin-simple-import-sort/releases)
- [Changelog](https://github.com/lydell/eslint-plugin-simple-import-sort/blob/main/CHANGELOG.md)
- [Commits](lydell/eslint-plugin-simple-import-sort@v5.0.3...v7.0.0)

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

* update dist

* update .eslintrc.json

Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>
Co-authored-by: Sergey Vilgelm <sergey.vilgelm@ibm.com>
  • Loading branch information
dependabot[bot] and Sergey Vilgelm committed Dec 29, 2020
1 parent 45f3a37 commit 89d96d6
Show file tree
Hide file tree
Showing 5 changed files with 23,820 additions and 11,432 deletions.
20 changes: 15 additions & 5 deletions .eslintrc.json
@@ -1,7 +1,13 @@
{
"env": { "node": true, "jest": true },
"env": {
"node": true,
"jest": true
},
"parser": "@typescript-eslint/parser",
"parserOptions": { "ecmaVersion": 2020, "sourceType": "module" },
"parserOptions": {
"ecmaVersion": 2020,
"sourceType": "module"
},
"extends": [
"eslint:recommended",
"plugin:@typescript-eslint/eslint-recommended",
Expand All @@ -12,12 +18,16 @@
"plugin:prettier/recommended",
"prettier/@typescript-eslint"
],
"plugins": ["@typescript-eslint", "simple-import-sort"],
"plugins": [
"@typescript-eslint",
"simple-import-sort"
],
"rules": {
"import/first": "error",
"import/newline-after-import": "error",
"import/no-duplicates": "error",
"simple-import-sort/sort": "error",
"simple-import-sort/imports": "error",
"simple-import-sort/exports": "error",
"sort-imports": "off"
}
}
}

0 comments on commit 89d96d6

Please sign in to comment.