I would like to disable linting for all files in a directory
For example
/
some.js <-LINT
noLint
file1.js <- NO LINT
file2.js <- NO LINT
subDir
file3.js <- NO LINT
I would like to disable linting for all files in a directory
For example
/
some.js <-LINT
noLint
file1.js <- NO LINT
file2.js <- NO LINT
subDir
file3.js <- NO LINT
Copyright © 2021 Jogjafile Inc.
I don't think that is possible. For jscs, I can imagine you can create a jscsrc that effectively disables all default rules. For example:
For jshint, you can try something similar:
So instead of disabling, you create settings that are as loose as possible.