You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
{{ message }}
This repository was archived by the owner on Aug 7, 2023. It is now read-only.
On my tslint.json I have the following configuration:
{ "extends": ["tslint:recommended"], "linterOptions": { "exclude": [ "./**/ServerModels.ts" ] }Which works fine (ServerModels.ts is not linted) if I run
tslint -c tslint.json src/**/*.ts.But I still get a linter error on atom when I open the file.
Is there anyway I can make
linter-tslintto exclude this file?Thanks in advance!