'myScript' is assigned a value but never used: How to Fix 'no-unused-vars' Error
This error message occurs when you declare a variable named 'myScript' but never use it in your code. To fix this, either use the variable or remove the declaration. If you don't need the variable, you can comment it out to mark it as unused:
// Define an unused variable
// const myScript = 'some value';
原文地址: https://www.cveoy.top/t/topic/mZLn 著作权归作者所有。请勿转载和采集!