- an auto inspect-errors for
/\.(jsx?|tsx?|vue|json|css)$/gi
and and try to fix in eslint and will close files which had looks fine so on.
take it easy and only use ctrl + shift + p
,then print ASC
for startup the inspect command and then u will paly with style errors.
if you want to use auto-inspect-errors's features of eslint, you must config your package.json before.this is the default configuration. Just add the following to your package.json.
"lint-fix": "eslint --fix ."
Include if your extension adds any VS Code settings through the contributes.configuration
extension point.
For example:
This extension contributes the following settings:
- 1 autoInspectErrors.excludedPatterns config for files,dictionaries and patterns.
"autoInspectErrors.excludedPatterns": ["fileToExclude.ts"]
"autoInspectErrors.excludedPatterns": ["folderToExclude/"]
"autoInspectErrors.excludedPatterns": ["**/*.spec.ts"]
"autoInspectErrors.excludedPatterns": [
"fileToExclude.ts",
"folderToExclude/",
"**/*.spec.ts"
]
- 2 autoInspectErrors.customErrorRules config
"autoInspectErrors.customErrorRules": [
"TODO:",
"FIXME:",
"\\bconsole\\.(log|error|warn)\\("
]
now it's 0
now it is first versions
Initial release of ...
Enjoy!