mirror of
https://github.com/Hopiu/bootstrap.git
synced 2026-03-16 20:50:24 +00:00
Enable eslint no-console rule except for build directory (#29585)
This commit is contained in:
parent
9f4e72d8c1
commit
b3dfcdc7ed
2 changed files with 5 additions and 1 deletions
|
|
@ -28,6 +28,7 @@
|
|||
"always-multiline"
|
||||
],
|
||||
"new-cap": "off",
|
||||
"no-console": "error",
|
||||
"object-curly-spacing": [
|
||||
"error",
|
||||
"always"
|
||||
|
|
|
|||
|
|
@ -6,5 +6,8 @@
|
|||
"parserOptions": {
|
||||
"sourceType": "script"
|
||||
},
|
||||
"extends": "../.eslintrc.json"
|
||||
"extends": "../.eslintrc.json",
|
||||
"rules": {
|
||||
"no-console": "off"
|
||||
}
|
||||
}
|
||||
|
|
|
|||
Loading…
Reference in a new issue