-
-
Notifications
You must be signed in to change notification settings - Fork 4.9k
Closed
Labels
archived due to ageThis issue has been archived; please open a new issue for any further discussionThis issue has been archived; please open a new issue for any further discussioncoreRelates to ESLint's core APIs and featuresRelates to ESLint's core APIs and featuresenhancementThis change enhances an existing feature of ESLintThis change enhances an existing feature of ESLintevaluatingThe team will evaluate this issue to decide whether it meets the criteria for inclusionThe team will evaluate this issue to decide whether it meets the criteria for inclusion
Description
Tell us about your environment
- ESLint Version: 3.0.0
- Node Version: 8.1.2
- npm Version: 5.0.3
What parser (default, Babel-ESLint, etc.) are you using? default
Please show your full configuration:
{
"parserOptions": {
"ecmaVersion": 2017
},
"root": true,
"rules": {
"no-path-concat": "error",
"no-process-env": "error",
"no-process-exit": "error",
"no-restricted-globals": [
"error", "process", "__dirname", "__filename"
],
"no-restricted-properties": [
"error",
{"property": "process"},
{"property": "__dirname"},
{"property": "__filename"}
]
}
}
What did you do? Please include the actual source code causing the issue.
When I eslint a dir with the above config, I get no errors for files that disable rules inline.
What did you expect to happen?
I want to ignore the comments that disable rules inline and I want to get errors for files that disable rules inline.
What actually happened? Please include the actual, raw output from ESLint.
No error.
Metadata
Metadata
Assignees
Labels
archived due to ageThis issue has been archived; please open a new issue for any further discussionThis issue has been archived; please open a new issue for any further discussioncoreRelates to ESLint's core APIs and featuresRelates to ESLint's core APIs and featuresenhancementThis change enhances an existing feature of ESLintThis change enhances an existing feature of ESLintevaluatingThe team will evaluate this issue to decide whether it meets the criteria for inclusionThe team will evaluate this issue to decide whether it meets the criteria for inclusion