diff options
| author | Pawel Wolak <[email protected]> | 2019-10-25 11:25:30 +0200 |
|---|---|---|
| committer | XhmikosR <[email protected]> | 2019-10-25 12:25:30 +0300 |
| commit | b3dfcdc7ed066469074e96d9ca80b0684d185d82 (patch) | |
| tree | 1dc3173f9950b550be855d4d56d16982556d3d40 /build | |
| parent | 9f4e72d8c12497aa8817e0a506fb0a5bf36f916a (diff) | |
| download | bootstrap-b3dfcdc7ed066469074e96d9ca80b0684d185d82.tar.xz bootstrap-b3dfcdc7ed066469074e96d9ca80b0684d185d82.zip | |
Enable eslint no-console rule except for build directory (#29585)
Diffstat (limited to 'build')
| -rw-r--r-- | build/.eslintrc.json | 5 |
1 files changed, 4 insertions, 1 deletions
diff --git a/build/.eslintrc.json b/build/.eslintrc.json index 8709a8b5b..08169ca4c 100644 --- a/build/.eslintrc.json +++ b/build/.eslintrc.json @@ -6,5 +6,8 @@ "parserOptions": { "sourceType": "script" }, - "extends": "../.eslintrc.json" + "extends": "../.eslintrc.json", + "rules": { + "no-console": "off" + } } |
