Disable `strict` for a few files
*Disable `strict` for a few files to disappear warnings
This commit is contained in:
parent
f816e52ac5
commit
2830062259
|
@ -9,7 +9,6 @@
|
|||
// NOTE(bajtos) we should eventually remove this override
|
||||
// and fix all of those 100+ violations
|
||||
"one-var": "off",
|
||||
"no-unused-expressions": "off",
|
||||
"strict": ["warn", "global"]
|
||||
"no-unused-expressions": "off"
|
||||
}
|
||||
}
|
||||
|
|
|
@ -3,6 +3,10 @@
|
|||
// This file is licensed under the MIT License.
|
||||
// License text available at https://opensource.org/licenses/MIT
|
||||
|
||||
// Turning on strict for this file breaks lots of test cases;
|
||||
// disabling strict for this file
|
||||
/* eslint-disable strict */
|
||||
|
||||
/*!
|
||||
* Module exports class Model
|
||||
*/
|
||||
|
|
|
@ -3,6 +3,10 @@
|
|||
// This file is licensed under the MIT License.
|
||||
// License text available at https://opensource.org/licenses/MIT
|
||||
|
||||
// Turning on strict for this file breaks lots of test cases;
|
||||
// disabling strict for this file
|
||||
/* eslint-disable strict */
|
||||
|
||||
/*!
|
||||
* Module dependencies
|
||||
*/
|
||||
|
|
|
@ -3,6 +3,10 @@
|
|||
// This file is licensed under the MIT License.
|
||||
// License text available at https://opensource.org/licenses/MIT
|
||||
|
||||
// Turning on strict for this file breaks lots of test cases;
|
||||
// disabling strict for this file
|
||||
/* eslint-disable strict */
|
||||
|
||||
/*!
|
||||
* Module exports class Model
|
||||
*/
|
||||
|
|
|
@ -3,6 +3,10 @@
|
|||
// This file is licensed under the MIT License.
|
||||
// License text available at https://opensource.org/licenses/MIT
|
||||
|
||||
// Turning on strict for this file breaks lots of test cases;
|
||||
// disabling strict for this file
|
||||
/* eslint-disable strict */
|
||||
|
||||
/*!
|
||||
* Dependencies
|
||||
*/
|
||||
|
|
Loading…
Reference in New Issue