Skip to content

Commit

Permalink
ESLint: ensure that all packaged code doesn't have any external… (#2378)
Browse files Browse the repository at this point in the history
  • Loading branch information
IvanGoncharov authored Jan 20, 2020
1 parent add6c6d commit 20b0d41
Showing 1 changed file with 3 additions and 1 deletion.
4 changes: 3 additions & 1 deletion .eslintrc.yml
Original file line number Diff line number Diff line change
Expand Up @@ -87,7 +87,7 @@ rules:
import/no-named-as-default: error
import/no-named-as-default-member: error
import/no-deprecated: error
import/no-extraneous-dependencies: error
import/no-extraneous-dependencies: [error, { devDependencies: false }]
import/no-mutable-exports: error
import/no-unused-modules: error

Expand Down Expand Up @@ -480,13 +480,15 @@ overrides:
'@typescript-eslint/type-annotation-spacing': off
- files: '**/__*__/**'
rules:
import/no-extraneous-dependencies: off
import/no-nodejs-modules: off
no-restricted-syntax: off
- files: 'resources/**'
parserOptions:
sourceType: script
rules:
import/no-dynamic-require: off
import/no-extraneous-dependencies: off
import/no-nodejs-modules: off
import/no-commonjs: off
no-await-in-loop: off
Expand Down

0 comments on commit 20b0d41

Please sign in to comment.